[FFmpeg-cvslog] update_stream_timings: Remove redundant check.
Michael Niedermayer
git at videolan.org
Thu Oct 6 00:23:57 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Oct 5 21:47:51 2011 +0200| [63b6d5f33fa9724111c46504c6f07dc516379a75] | committer: Michael Niedermayer
update_stream_timings: Remove redundant check.
Found-by:Nicolas
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=63b6d5f33fa9724111c46504c6f07dc516379a75
---
libavformat/utils.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index d8b62f3..e9c60e7 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1903,7 +1903,7 @@ static void update_stream_timings(AVFormatContext *ic)
st = ic->streams[i];
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);
- if (st->codec->codec_id == CODEC_ID_DVB_TELETEXT || st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
+ if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
if (start_time1 < start_time_text)
start_time_text = start_time1;
} else
More information about the ffmpeg-cvslog
mailing list