diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-08-09 00:54:41 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-08-09 00:54:41 +0000 |
commit | 7f95d9f620c680b254dfc0ca3add1cba0f8532c0 (patch) | |
tree | 3a0aad53c363bf4a433e014f5fa97a91189ea1e1 /libavcodec | |
parent | 222ae64c3d353bebc5c00a206859ae136ca08940 (diff) | |
download | ffmpeg-7f95d9f620c680b254dfc0ca3add1cba0f8532c0.tar.gz |
fix compilation with TRACE enabled
Originally committed as revision 10003 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/wmadec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 455659a615..7df4eec25e 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -48,7 +48,7 @@ static void wma_lsp_to_curve_init(WMACodecContext *s, int frame_len); #ifdef TRACE -static void dump_shorts(WMADecodeContext *s, const char *name, const short *tab, int n) +static void dump_shorts(WMACodecContext *s, const char *name, const short *tab, int n) { int i; @@ -62,7 +62,7 @@ static void dump_shorts(WMADecodeContext *s, const char *name, const short *tab, } } -static void dump_floats(WMADecodeContext *s, const char *name, int prec, const float *tab, int n) +static void dump_floats(WMACodecContext *s, const char *name, int prec, const float *tab, int n) { int i; |