Commit 204bcdf5 authored by Luca Barbato's avatar Luca Barbato

mkv: report average framerate as minimal as well

This is in line with other demuxers and overall seems more correct
than assuming codec time base.
parent df8d5eaa
......@@ -1551,6 +1551,7 @@ static int matroska_read_header(AVFormatContext *s)
if (st->codec->codec_id != CODEC_ID_H264)
st->need_parsing = AVSTREAM_PARSE_HEADERS;
if (track->default_duration)
st->r_frame_rate =
st->avg_frame_rate = av_d2q(1000000000.0/track->default_duration, INT_MAX);
} else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
......
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