Commit 0c938bd1 authored by Alex Beregszaszi's avatar Alex Beregszaszi

get_bits -> skip_bits

Originally committed as revision 2083 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 669e5093
...@@ -616,9 +616,9 @@ static int svq1_decode_frame_header (GetBitContext *bitbuf,MpegEncContext *s) { ...@@ -616,9 +616,9 @@ static int svq1_decode_frame_header (GetBitContext *bitbuf,MpegEncContext *s) {
printf ("embedded message: \"%s\"\n", (char *) msg); printf ("embedded message: \"%s\"\n", (char *) msg);
} }
get_bits (bitbuf, 2); skip_bits (bitbuf, 2);
get_bits (bitbuf, 2); skip_bits (bitbuf, 2);
get_bits (bitbuf, 1); skip_bits1 (bitbuf);
/* load frame size */ /* load frame size */
frame_size_code = get_bits (bitbuf, 3); frame_size_code = get_bits (bitbuf, 3);
...@@ -639,21 +639,21 @@ static int svq1_decode_frame_header (GetBitContext *bitbuf,MpegEncContext *s) { ...@@ -639,21 +639,21 @@ static int svq1_decode_frame_header (GetBitContext *bitbuf,MpegEncContext *s) {
/* unknown fields */ /* unknown fields */
if (get_bits (bitbuf, 1) == 1) { if (get_bits (bitbuf, 1) == 1) {
get_bits (bitbuf, 1); /* use packet checksum if (1) */ skip_bits1 (bitbuf); /* use packet checksum if (1) */
get_bits (bitbuf, 1); /* component checksums after image data if (1) */ skip_bits1 (bitbuf); /* component checksums after image data if (1) */
if (get_bits (bitbuf, 2) != 0) if (get_bits (bitbuf, 2) != 0)
return -1; return -1;
} }
if (get_bits (bitbuf, 1) == 1) { if (get_bits (bitbuf, 1) == 1) {
get_bits (bitbuf, 1); skip_bits1 (bitbuf);
get_bits (bitbuf, 4); skip_bits (bitbuf, 4);
get_bits (bitbuf, 1); skip_bits1 (bitbuf);
get_bits (bitbuf, 2); skip_bits (bitbuf, 2);
while (get_bits (bitbuf, 1) == 1) { while (get_bits (bitbuf, 1) == 1) {
get_bits (bitbuf, 8); skip_bits (bitbuf, 8);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment