diff options
| -rw-r--r-- | apps/codecs/libmusepack/streaminfo.c | 3 | ||||
| -rw-r--r-- | apps/codecs/libmusepack/synth_filter.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/codecs/libmusepack/streaminfo.c b/apps/codecs/libmusepack/streaminfo.c index ac5a726..8ec2234 100644 --- a/apps/codecs/libmusepack/streaminfo.c +++ b/apps/codecs/libmusepack/streaminfo.c @@ -35,6 +35,7 @@ /// \file streaminfo.c /// Implementation of streaminfo reading functions. +#include <string.h> #include "musepack.h" #include "internal.h" @@ -63,6 +64,8 @@ mpc_streaminfo_init(mpc_streaminfo * si) static mpc_int32_t streaminfo_read_header_sv8(mpc_streaminfo * si, mpc_reader * fp) { + (void)si; + (void)fp; return 0; } diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c index ca20371..f8a2921 100644 --- a/apps/codecs/libmusepack/synth_filter.c +++ b/apps/codecs/libmusepack/synth_filter.c @@ -36,6 +36,7 @@ /// Synthesis functions. /// \todo document me +#include <string.h> #include "musepack.h" #include "internal.h" |