Commit f0315318 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vaapi_mpeg2: Use skip_1stop_8data_bits()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9c7662ae
...@@ -115,8 +115,8 @@ static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer ...@@ -115,8 +115,8 @@ static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
intra_slice_flag = get_bits1(&gb); intra_slice_flag = get_bits1(&gb);
if (intra_slice_flag) { if (intra_slice_flag) {
skip_bits(&gb, 8); skip_bits(&gb, 8);
while (get_bits1(&gb) != 0) if (skip_1stop_8data_bits(&gb) < 0)
skip_bits(&gb, 8); return AVERROR_INVALIDDATA;
} }
macroblock_offset = get_bits_count(&gb); macroblock_offset = get_bits_count(&gb);
......
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