1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-03 17:29:30 +02:00

nutdec: do not set has_b_frames

It is not supposed to be set by demuxers.
This commit is contained in:
Anton Khirnov 2014-10-30 07:51:15 +01:00
parent acc897e6b1
commit 05e59135b3

View File

@ -399,7 +399,6 @@ static int decode_stream_header(NUTContext *nut)
GET_V(stc->msb_pts_shift, tmp < 16);
stc->max_pts_distance = ffio_read_varlen(bc);
GET_V(stc->decode_delay, tmp < 1000); // sanity limit, raise this if Moore's law is true
st->codec->has_b_frames = stc->decode_delay;
ffio_read_varlen(bc); // stream flags
GET_V(st->codec->extradata_size, tmp < (1 << 30));