diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-01-30 14:41:34 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-01-30 14:41:34 +0000 |
commit | e2ea766a40e939d5a21431e64153c10c40ee48d1 (patch) | |
tree | 05892bff9ec9cfdad24a2add7ad5eb3b38ffd00e /src/libmusepack/musepack/musepack.h | |
parent | 98ec149da4451676a744ac6973027ed741c4708b (diff) | |
download | xine-lib-e2ea766a40e939d5a21431e64153c10c40ee48d1.tar.gz xine-lib-e2ea766a40e939d5a21431e64153c10c40ee48d1.tar.bz2 |
**BUGFIX**
Import WIN32 compile fix from musepack SVN.
CVS patchset: 7372
CVS date: 2005/01/30 14:41:34
Diffstat (limited to 'src/libmusepack/musepack/musepack.h')
-rw-r--r-- | src/libmusepack/musepack/musepack.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmusepack/musepack/musepack.h b/src/libmusepack/musepack/musepack.h index b84cf3513..dfbf0a36d 100644 --- a/src/libmusepack/musepack/musepack.h +++ b/src/libmusepack/musepack/musepack.h @@ -60,7 +60,7 @@ void mpc_decoder_setup(mpc_decoder *d, mpc_reader *r); /// Call this next after calling mpc_decoder_setup. /// \param si streaminfo structure indicating format of source stream /// \return TRUE if decoder was initalized successfully, FALSE otherwise -BOOL mpc_decoder_initialize(mpc_decoder *d, mpc_streaminfo *si); +mpc_bool_t mpc_decoder_initialize(mpc_decoder *d, mpc_streaminfo *si); /// Sets decoder sample scaling factor. All decoded samples will be multiplied /// by this factor. @@ -82,10 +82,10 @@ mpc_uint32_t mpc_decoder_decode( mpc_uint32_t *vbr_update_bits); /// Seeks to the specified sample in the source stream. -BOOL mpc_decoder_seek_sample(mpc_decoder *d, mpc_int64_t destsample); +mpc_bool_t mpc_decoder_seek_sample(mpc_decoder *d, mpc_int64_t destsample); /// Seeks to specified position in seconds in the source stream. -BOOL mpc_decoder_seek_seconds(mpc_decoder *d, double seconds); +mpc_bool_t mpc_decoder_seek_seconds(mpc_decoder *d, double seconds); #ifdef __cplusplus } |