summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-26 18:01:31 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-16 01:05:27 +0200
commit9b27474cdfd87a8d6c78879ea90a1fc65348afed (patch)
tree969f36cb3c1253339fd79504c4bf346f3ccf709f /libavformat
parentaf71771a6ce342c9f1b056a67251c3386c60e9c7 (diff)
downloadffmpeg-9b27474cdfd87a8d6c78879ea90a1fc65348afed.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>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 06d87dec7f..682a2620f6 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -737,7 +737,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
);
}