diff vp3.c @ 9637:f1dc62781766 libavcodec

Use skip_bits_long() for large skips This fixes ogg/theora on ARM (more generally the A32 bitstream reader)
author conrad
date Thu, 14 May 2009 00:02:07 +0000
parents bd3e11b60ccd
children bc32976d6d9d
line wrap: on
line diff
--- a/vp3.c	Wed May 13 22:57:30 2009 +0000
+++ b/vp3.c	Thu May 14 00:02:07 2009 +0000
@@ -2243,7 +2243,7 @@
      }
 
     // FIXME: Check for this as well.
-    skip_bits(&gb, 6*8); /* "theora" */
+    skip_bits_long(&gb, 6*8); /* "theora" */
 
     switch(ptype)
     {