Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2009-05-14 04:02:07 +0400
committerDavid Conrad <lessen42@gmail.com>2009-05-14 04:02:07 +0400
commit0a8dedc9e18eb112ea468f5bf0f32bdec74cdd64 (patch)
tree2a620a5f9576bbfccdb0b77f06b01bad453a22fe /libavcodec/vp3.c
parent97d4318347bb298eed36ef53e5264cb065f7993e (diff)
Use skip_bits_long() for large skips
This fixes ogg/theora on ARM (more generally the A32 bitstream reader) Originally committed as revision 18819 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index c1ca98f3c4..43a3658c33 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -2243,7 +2243,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
}
// FIXME: Check for this as well.
- skip_bits(&gb, 6*8); /* "theora" */
+ skip_bits_long(&gb, 6*8); /* "theora" */
switch(ptype)
{