You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
ffmpeg: limit non monotone workaround to audio & video streams
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
1
ffmpeg.c
1
ffmpeg.c
@@ -611,6 +611,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
|
if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS) &&
|
||||||
|
(avctx->codec_type == AVMEDIA_TYPE_AUDIO || avctx->codec_type == AVMEDIA_TYPE_VIDEO) &&
|
||||||
ost->last_mux_dts != AV_NOPTS_VALUE &&
|
ost->last_mux_dts != AV_NOPTS_VALUE &&
|
||||||
pkt->dts < ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT)) {
|
pkt->dts < ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT)) {
|
||||||
av_log(NULL, AV_LOG_WARNING, "Non-monotonous DTS in output stream "
|
av_log(NULL, AV_LOG_WARNING, "Non-monotonous DTS in output stream "
|
||||||
|
Reference in New Issue
Block a user