diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-05-26 18:01:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-05-27 04:22:52 +0200 |
commit | 780c360e760b4e6734570a534a1798bd092adc22 (patch) | |
tree | c629564ab062de7adae1e323331540a270254d03 | |
parent | 278bd748a8b64106f098de3f6eb328576731b2f0 (diff) | |
download | ffmpeg-780c360e760b4e6734570a534a1798bd092adc22.tar.gz |
avformat/mux: Fix copy an paste typo
Found-by: Roger Scott <rscott@grammatech.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 1a36354698fc0453ba4d337786d2cb4d3e374cfb)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index f14bfd52d5..48e266e0f2 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -650,7 +650,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt) av_log(s, AV_LOG_WARNING, "failed to avoid negative " "pts %s in stream %d.\n" "Try -avoid_negative_ts 1 as a possible workaround.\n", - av_ts2str(pkt->dts), + av_ts2str(pkt->pts), pkt->stream_index ); } |