diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2004-06-26 10:09:58 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2004-06-26 10:09:58 +0000 |
commit | 491c4a1005fe0d8e2d687140a6e92822af3fa373 (patch) | |
tree | daaa94cc7811a4d989cc1c4e9664725b4f96ff2f | |
parent | d967e3b8a54a68ff64576a0e493dfead465f67e6 (diff) | |
download | ffmpeg-491c4a1005fe0d8e2d687140a6e92822af3fa373.tar.gz |
warning fix
Originally committed as revision 3258 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegaudiodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index f9cb389aa2..4199691996 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -856,7 +856,7 @@ static void synth_filter(MPADecodeContext *s1, { int32_t tmp[32]; register MPA_INT *synth_buf; - const register MPA_INT *w, *w2, *p; + register const MPA_INT *w, *w2, *p; int j, offset, v; int16_t *samples2; #if FRAC_BITS <= 15 |