aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-26 18:01:31 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-05 23:16:54 +0200
commitfc449d70cf4d5630c3576314ecf63625c52a01e3 (patch)
treeaa5e8451c479846986a395459f8b251b1440f79f
parent6025edc0c7c6a69f4b0a06485884f512f2f9205e (diff)
downloadffmpeg-fc449d70cf4d5630c3576314ecf63625c52a01e3.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 8d5867cdcf..df1a91e293 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -632,7 +632,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
);
}