[FFmpeg-devel] [PATCH 25/30] lavc/pngenc: stop setting dts unnecessarily for APNG
Anton Khirnov
anton at khirnov.net
Sun Nov 27 19:03:46 EET 2022
APNG is not marked as supporting reordering, so dts will be set from pts
by the generic code.
---
libavcodec/pngenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c
index a54cfcdd69..009874cef5 100644
--- a/libavcodec/pngenc.c
+++ b/libavcodec/pngenc.c
@@ -976,7 +976,7 @@ static int encode_apng(AVCodecContext *avctx, AVPacket *pkt,
return ret;
memcpy(pkt->data, s->last_frame_packet, s->last_frame_packet_size);
- pkt->pts = pkt->dts = s->last_frame->pts;
+ pkt->pts = s->last_frame->pts;
pkt->duration = s->last_frame->duration;
if (s->last_frame->opaque_ref &&
--
2.35.1
More information about the ffmpeg-devel
mailing list