diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-11 10:54:49 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-23 15:14:44 +0200 |
commit | aaefb84b04a8a8d40b3d23ce4f0b0c92b093ddb9 (patch) | |
tree | fc609d57da8b99abe8c0db47d560419498494fbe | |
parent | 5abb5c04155b536f26fc88311ac3132890111360 (diff) | |
download | ffmpeg-aaefb84b04a8a8d40b3d23ce4f0b0c92b093ddb9.tar.gz |
avcodec/pngenc: Remove always-true check
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/pngenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c index a398155100..5a376765cf 100644 --- a/libavcodec/pngenc.c +++ b/libavcodec/pngenc.c @@ -847,7 +847,7 @@ static int encode_apng(AVCodecContext *avctx, AVPacket *pkt, size_t max_packet_size; APNGFctlChunk fctl_chunk = {0}; - if (pict && avctx->codec_id == AV_CODEC_ID_APNG && s->color_type == PNG_COLOR_TYPE_PALETTE) { + if (pict && s->color_type == PNG_COLOR_TYPE_PALETTE) { uint32_t checksum = ~av_crc(av_crc_get_table(AV_CRC_32_IEEE_LE), ~0U, pict->data[1], 256 * sizeof(uint32_t)); if (avctx->frame_number == 0) { |