mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Disable B-frames decoding until they produce correct picture
Originally committed as revision 6218 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d120e4026d
commit
dc43482b26
@ -4180,6 +4180,12 @@ static int vc1_decode_frame(AVCodecContext *avctx,
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* skip B frames as they are not decoded correctly */
|
||||
if(s->pict_type == B_TYPE){
|
||||
av_free(buf2);
|
||||
return buf_size;
|
||||
}
|
||||
|
||||
// for hurry_up==5
|
||||
s->current_picture.pict_type= s->pict_type;
|
||||
s->current_picture.key_frame= s->pict_type == I_TYPE;
|
||||
|
Loading…
Reference in New Issue
Block a user