diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2005-01-16 17:55:31 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2005-01-16 17:55:31 +0000 |
commit | be49aa0fac66f4a58d33b01b438bb30fee4a3b89 (patch) | |
tree | d34708b48bbec272a4720c896e5b95f1e3bfd0a7 /src/libmusepack/streaminfo.c | |
parent | c085fd10b4ad686c90d25264bdda16b7396ecc63 (diff) | |
download | xine-lib-be49aa0fac66f4a58d33b01b438bb30fee4a3b89.tar.gz xine-lib-be49aa0fac66f4a58d33b01b438bb30fee4a3b89.tar.bz2 |
**BUGFIX**
trying to get rid of compiler warnings and make the test suite compile again
CVS patchset: 7353
CVS date: 2005/01/16 17:55:31
Diffstat (limited to 'src/libmusepack/streaminfo.c')
-rw-r--r-- | src/libmusepack/streaminfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmusepack/streaminfo.c b/src/libmusepack/streaminfo.c index c3c6b3838..2c6ff1c6f 100644 --- a/src/libmusepack/streaminfo.c +++ b/src/libmusepack/streaminfo.c @@ -60,14 +60,14 @@ mpc_streaminfo_init(mpc_streaminfo * si) // read information from SV8 header // not yet implemented -mpc_int32_t +static mpc_int32_t streaminfo_read_header_sv8(mpc_streaminfo * si, mpc_reader * fp) { return 0; } /// Reads streaminfo from SV7 header. -mpc_int32_t +static mpc_int32_t streaminfo_read_header_sv7(mpc_streaminfo * si, mpc_uint32_t HeaderData[8]) { const mpc_int32_t samplefreqs[4] = { 44100, 48000, 37800, 32000 }; @@ -140,7 +140,7 @@ streaminfo_read_header_sv7(mpc_streaminfo * si, mpc_uint32_t HeaderData[8]) } // read information from SV4-SV6 header -mpc_int32_t +static mpc_int32_t streaminfo_read_header_sv6(mpc_streaminfo * si, mpc_uint32_t HeaderData[8]) { //mpc_uint32_t HeaderData [8]; |