Commit 78972a69 authored by Michael Niedermayer's avatar Michael Niedermayer

lavf/utils: ignore subtitle timestamps in timings calculation

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dacf0766
...@@ -1898,7 +1898,7 @@ static void update_stream_timings(AVFormatContext *ic) ...@@ -1898,7 +1898,7 @@ static void update_stream_timings(AVFormatContext *ic)
st = ic->streams[i]; st = ic->streams[i];
if (st->start_time != AV_NOPTS_VALUE && st->time_base.den) { if (st->start_time != AV_NOPTS_VALUE && st->time_base.den) {
start_time1= av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q); start_time1= av_rescale_q(st->start_time, st->time_base, AV_TIME_BASE_Q);
if (st->codec->codec_id == CODEC_ID_DVB_TELETEXT) { if (st->codec->codec_id == CODEC_ID_DVB_TELETEXT || st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
if (start_time1 < start_time_text) if (start_time1 < start_time_text)
start_time_text = start_time1; start_time_text = start_time1;
} else } else
......
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