[FFmpeg-cvslog] Show stream number when warning about stream without start time.

Carl Eugen Hoyos git at videolan.org
Sat Apr 5 03:31:24 CEST 2014


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat Apr  5 01:15:12 2014 +0200| [9f4ab4e5f9f08b8e204cf38f1d73abb89b710556] | committer: Carl Eugen Hoyos

Show stream number when warning about stream without start time.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f4ab4e5f9f08b8e204cf38f1d73abb89b710556
---

 libavformat/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 10508f6..207501a 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2451,7 +2451,7 @@ static void estimate_timings_from_pts(AVFormatContext *ic, int64_t old_offset)
             st->first_dts == AV_NOPTS_VALUE &&
             st->codec->codec_type != AVMEDIA_TYPE_UNKNOWN)
             av_log(st->codec, AV_LOG_WARNING,
-                   "start time is not set in estimate_timings_from_pts\n");
+                   "start time for stream %d is not set in estimate_timings_from_pts\n", i);
 
         if (st->parser) {
             av_parser_close(st->parser);



More information about the ffmpeg-cvslog mailing list