Browse Source

fix compilation with TRACE enabled

Originally committed as revision 10003 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Beregszaszi 18 years ago
parent
commit
7f95d9f620
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/wmadec.c

+ 2
- 2
libavcodec/wmadec.c View File

@@ -48,7 +48,7 @@
static void wma_lsp_to_curve_init(WMACodecContext *s, int frame_len); static void wma_lsp_to_curve_init(WMACodecContext *s, int frame_len);


#ifdef TRACE #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; 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; int i;




Loading…
Cancel
Save