diff eac3dec.c @ 8272:c15abcb0209a libavcodec

ac3dec: use skip_bits_long() for block start bits
author jbr
date Sat, 06 Dec 2008 16:18:10 +0000
parents f17b1eb9ccd1
children 55aba5d428f3
line wrap: on
line diff
--- a/eac3dec.c	Sat Dec 06 15:46:23 2008 +0000
+++ b/eac3dec.c	Sat Dec 06 16:18:10 2008 +0000
@@ -475,7 +475,7 @@
            The spec does not say what this data is or what it's used for.
            It is likely the offset of each block within the frame. */
         int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2));
-        skip_bits(gbc, block_start_bits);
+        skip_bits_long(gbc, block_start_bits);
     }
 
     /* syntax state initialization */