mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 10:51:38 +00:00
avcodec/svq3: Use skip_1stop_8data_bits()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c882b62d14
commit
9c7662aeba
@ -838,8 +838,8 @@ static int svq3_decode_slice_header(AVCodecContext *avctx)
|
|||||||
skip_bits1(&h->gb);
|
skip_bits1(&h->gb);
|
||||||
skip_bits(&h->gb, 2);
|
skip_bits(&h->gb, 2);
|
||||||
|
|
||||||
while (get_bits1(&h->gb))
|
if (skip_1stop_8data_bits(&h->gb) < 0)
|
||||||
skip_bits(&h->gb, 8);
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
/* reset intra predictors and invalidate motion vector references */
|
/* reset intra predictors and invalidate motion vector references */
|
||||||
if (h->mb_x > 0) {
|
if (h->mb_x > 0) {
|
||||||
@ -970,8 +970,8 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
|
|||||||
/* unknown field */
|
/* unknown field */
|
||||||
skip_bits1(&gb);
|
skip_bits1(&gb);
|
||||||
|
|
||||||
while (get_bits1(&gb))
|
if (skip_1stop_8data_bits(&gb) < 0)
|
||||||
skip_bits(&gb, 8);
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
s->unknown_flag = get_bits1(&gb);
|
s->unknown_flag = get_bits1(&gb);
|
||||||
avctx->has_b_frames = !h->low_delay;
|
avctx->has_b_frames = !h->low_delay;
|
||||||
|
Loading…
Reference in New Issue
Block a user