summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-03 15:03:35 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-03 15:03:35 +0200
commitaf2d96433624d4083bd94083a2ef8aaa5f42c3a2 (patch)
treea1326be1fce5c1e27e44bf8f0f31763af383438e /ffmpeg.c
parentb2a1d92b7b30c75277cb8bd33221458f5cc589da (diff)
ffmpeg: set correct log context for non monotone dts workaround warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 6017691f29..ea5c581d07 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -617,14 +617,14 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
if (pkt->dts < max) {
int loglevel = max - pkt->dts > 2 || avctx->codec_type == AVMEDIA_TYPE_VIDEO ? AV_LOG_WARNING : AV_LOG_DEBUG;
- av_log(NULL, loglevel, "Non-monotonous DTS in output stream "
+ av_log(s, loglevel, "Non-monotonous DTS in output stream "
"%d:%d; previous: %"PRId64", current: %"PRId64"; ",
ost->file_index, ost->st->index, ost->last_mux_dts, pkt->dts);
if (exit_on_error) {
av_log(NULL, AV_LOG_FATAL, "aborting.\n");
exit(1);
}
- av_log(NULL, loglevel, "changing to %"PRId64". This may result "
+ av_log(s, loglevel, "changing to %"PRId64". This may result "
"in incorrect timestamps in the output file.\n",
max);
if(pkt->pts >= pkt->dts)