diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-08-09 00:57:36 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-08-09 00:57:36 +0000 |
commit | 7ae7300ee3bc830d9ece8c4c1fa27330b76c8218 (patch) | |
tree | 026875fae10a86165c66c87b3dcd490bcf35f204 /libavcodec/mpegaudiodec.c | |
parent | 7f95d9f620c680b254dfc0ca3add1cba0f8532c0 (diff) | |
download | ffmpeg-7ae7300ee3bc830d9ece8c4c1fa27330b76c8218.tar.gz |
use skip_bits where appropriate
Originally committed as revision 10004 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-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 7e080998d0..3c4b757d6a 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -2288,7 +2288,7 @@ static int mp_decode_frame(MPADecodeContext *s, /* skip error protection field */ if (s->error_protection) - get_bits(&s->gb, 16); + skip_bits(&s->gb, 16); dprintf(s->avctx, "frame %d:\n", s->frame_count); switch(s->layer) { |