Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-26 19:01:31 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-02 02:14:38 +0300
commit92a23e2a639c6805f433c2bff2009ff02c464789 (patch)
tree9995649553dd66e2762df391d29ea78973cfbaa6
parent42163d4c551d1e1b1f18c0489aa8feb2cd9f8092 (diff)
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 3a5e876913..f14a5cfd87 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -732,7 +732,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
);
}