lavc/pngenc: stop setting dts unnecessarily for APNG

APNG is not marked as supporting reordering, so dts will be set from pts
by the generic code.
This commit is contained in:
Anton Khirnov 2022-07-12 14:45:59 +02:00
parent bbbafab0ee
commit b7f0c8889e

View File

@ -963,7 +963,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;
ret = ff_encode_reordered_opaque(avctx, pkt, s->last_frame);