Commit 05e59135 authored by Anton Khirnov's avatar Anton Khirnov

nutdec: do not set has_b_frames

It is not supposed to be set by demuxers.
parent acc897e6
...@@ -399,7 +399,6 @@ static int decode_stream_header(NUTContext *nut) ...@@ -399,7 +399,6 @@ static int decode_stream_header(NUTContext *nut)
GET_V(stc->msb_pts_shift, tmp < 16); GET_V(stc->msb_pts_shift, tmp < 16);
stc->max_pts_distance = ffio_read_varlen(bc); 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 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 ffio_read_varlen(bc); // stream flags
GET_V(st->codec->extradata_size, tmp < (1 << 30)); GET_V(st->codec->extradata_size, tmp < (1 << 30));
......
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