diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-02 19:08:29 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-02 19:08:29 +0000 |
| commit | 7155be6ca49ee71f565c8d5e196e189540edf2c8 (patch) | |
| tree | 79ee549649559ea310f452631fe1d9132c5f0e94 /apps/codecs/libmusepack/internal.h | |
| parent | 7bbd7daaf77aa78a1ed2fc7338841f1653d20530 (diff) | |
| download | rockbox-7155be6ca49ee71f565c8d5e196e189540edf2c8.zip rockbox-7155be6ca49ee71f565c8d5e196e189540edf2c8.tar.gz rockbox-7155be6ca49ee71f565c8d5e196e189540edf2c8.tar.bz2 rockbox-7155be6ca49ee71f565c8d5e196e189540edf2c8.tar.xz | |
Sync rockbox to r475 of musepack's svn.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30240 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmusepack/internal.h')
| -rw-r--r-- | apps/codecs/libmusepack/internal.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/codecs/libmusepack/internal.h b/apps/codecs/libmusepack/internal.h index 0f29060..3f8b29f 100644 --- a/apps/codecs/libmusepack/internal.h +++ b/apps/codecs/libmusepack/internal.h @@ -88,12 +88,12 @@ struct mpc_demux_t { /** * checks if a block key is valid * @param key the two caracters key to check - * @return MPC_STATUS_INVALIDSV if the key is invalid, MPC_STATUS_OK else + * @return MPC_STATUS_FAIL if the key is invalid, MPC_STATUS_OK else */ static mpc_inline mpc_status mpc_check_key(char * key) { if (key[0] < 65 || key[0] > 90 || key[1] < 65 || key[1] > 90) - return MPC_STATUS_INVALIDSV; + return MPC_STATUS_FAIL; return MPC_STATUS_OK; } @@ -114,6 +114,9 @@ void streaminfo_gain(mpc_streaminfo* si, const mpc_bits_reader * r_in); // mpc_decoder.c void mpc_decoder_reset_scf(mpc_decoder * d, int value); +#define MPC_IS_FAILURE(X) ((int)(X) < (int)MPC_STATUS_OK) +#define MPC_AUTO_FAIL(X) { mpc_status s = (X); if (MPC_IS_FAILURE(s)) return s; } + #ifdef __cplusplus } #endif |