summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-04-05 01:15:12 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-04-05 01:15:12 +0200
commit9f4ab4e5f9f08b8e204cf38f1d73abb89b710556 (patch)
tree0dfbc515ee0f593e066e3548876e19a742a45aec /libavformat
parent87f29996415ad2c06ab00583d709fa03b5185305 (diff)
Show stream number when warning about stream without start time.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 10508f6ab7..207501a296 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);