mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
vc1dec: fix 10l typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9e794d103c
commit
a3b3562b47
@ -5719,7 +5719,7 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data,
|
||||
//av_log(s->avctx, AV_LOG_INFO, "Consumed %i/%i bits\n", get_bits_count(&s->gb), s->gb.size_in_bits);
|
||||
// if (get_bits_count(&s->gb) > buf_size * 8)
|
||||
// return -1;
|
||||
if(s->error_occurred & s->pict_type == AV_PICTURE_TYPE_B)
|
||||
if(s->error_occurred && s->pict_type == AV_PICTURE_TYPE_B)
|
||||
goto err;
|
||||
ff_er_frame_end(s);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user