1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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 1a36354698)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2017-05-26 18:01:31 +02:00
parent 278bd748a8
commit 780c360e76

View File

@ -650,7 +650,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
av_log(s, AV_LOG_WARNING, "failed to avoid negative " av_log(s, AV_LOG_WARNING, "failed to avoid negative "
"pts %s in stream %d.\n" "pts %s in stream %d.\n"
"Try -avoid_negative_ts 1 as a possible workaround.\n", "Try -avoid_negative_ts 1 as a possible workaround.\n",
av_ts2str(pkt->dts), av_ts2str(pkt->pts),
pkt->stream_index pkt->stream_index
); );
} }