Message ID | 1646229512-12103-2-git-send-email-lance.lmwang@gmail.com |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel,1/2] avformat/movenc: initialize pts/dts/duration of timecode packet | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_aarch64_jetson | success | Make finished |
andriy/make_fate_aarch64_jetson | success | Make fate finished |
andriy/make_armv7_RPi4 | success | Make finished |
andriy/make_fate_armv7_RPi4 | success | Make fate finished |
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 74b94cd..8b038c1 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -5638,9 +5638,8 @@ static int check_pkt(AVFormatContext *s, AVPacket *pkt) duration = pkt->dts - ref; if (pkt->dts < ref || duration >= INT_MAX) { - av_log(s, AV_LOG_ERROR, "Application provided duration: %"PRId64" / timestamp: %"PRId64" is out of range for mov/mp4 format\n", - duration, pkt->dts - ); + av_log(s, AV_LOG_WARNING, "Packet duration: %"PRId64" / dts: %"PRId64" is out of range\n", + duration, pkt->dts); pkt->dts = ref + 1; pkt->pts = AV_NOPTS_VALUE;