Browse Source

Show stream number when warning about stream without start time.

tags/n2.3
Carl Eugen Hoyos 11 years ago
parent
commit
9f4ab4e5f9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/utils.c

+ 1
- 1
libavformat/utils.c View File

@@ -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);


Loading…
Cancel
Save