summaryrefslogtreecommitdiff
path: root/libavcodec/pngenc.c
Commit message (Expand)AuthorAgeFilesLines
* avcodec/pngenc: write sBIT chunksLeo Izen2023-04-011-0/+6
* avcodec: add AVCodecContext.frame_num as 64 bit variant to frame_numberMarton Balint2023-02-131-4/+4
* avutil/{color_utils, csp}: merge color_utils into csp and expose APILeo Izen2023-02-091-2/+1
* avcodec/pngenc: avoid writing cICP when inappropriateLeo Izen2023-02-081-7/+14
* lavc/pngenc: stop setting dts unnecessarily for APNGAnton Khirnov2023-01-291-1/+1
* lavc/pngenc: handle frame durations and AV_CODEC_CAP_ENCODER_REORDERED_OPAQUEAnton Khirnov2023-01-291-1/+7
* lavc: support AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE in all no-delay encodersAnton Khirnov2023-01-291-1/+2
* avcodec/png: support cICP chunksLeo Izen2023-01-251-0/+8
* avcodec/png: use libavutil/csp.h for cHRM chunksLeo Izen2023-01-251-37/+16
* avcodec/codec_internal: Add macro to set AVCodec.long_nameAndreas Rheinhardt2022-09-031-2/+2
* avcodec: Make ff_alloc_packet() based encoders accept user buffersAndreas Rheinhardt2022-08-271-1/+1
* avcodec: Constify frame->data pointers for encoders where possibleAndreas Rheinhardt2022-08-051-9/+9
* avcodec/pngenc: Don't cast const away unnecessarilyAndreas Rheinhardt2022-07-311-1/+1
* avcodec/codec_internal: add cap for ICC profile supportNiklas Haas2022-07-301-0/+2
* avcodec: Make init-threadsafety the defaultAndreas Rheinhardt2022-07-181-2/+0
* avcodec/apng: Add APNG_FCTL_CHUNK_SIZE defineAndreas Rheinhardt2022-07-091-3/+3
* avcodec/pngenc: support writing iCCP chunksNiklas Haas2022-04-111-2/+82
* avcodec/codec_internal: Use union for FFCodec decode/encode callbacksAndreas Rheinhardt2022-04-051-2/+2
* avcodec/codec_internal: Add FFCodec, hide internal part of AVCodecAndreas Rheinhardt2022-03-211-16/+16
* avcodec/internal: Move FF_CODEC_CAP_* to a new header codec_internal.hAndreas Rheinhardt2022-03-211-1/+1
* avcodec/pngenc: Use ff_deflate_init/end() wrappersAndreas Rheinhardt2022-03-191-25/+24
* avcodec/pngenc: Don't use deflateInit2() with default parametersAndreas Rheinhardt2022-03-191-1/+1
* avcodec/pngenc: Avoid potentially truncating integersAndreas Rheinhardt2022-03-191-4/+2
* avcodec/pngenc: Deduplicate AVClassesAndreas Rheinhardt2021-07-081-9/+2
* avcodec/encode: Always use intermediate buffer in ff_alloc_packet2()Andreas Rheinhardt2021-06-081-1/+1
* avcodec/pngenc: Avoid copying APNG data, allow user-supplied bufferAndreas Rheinhardt2021-05-231-3/+3
* avcodec/pngenc: Remove always-true checkAndreas Rheinhardt2021-05-231-1/+1
* avcodec/pngenc: Mark encoders as init-threadsafeAndreas Rheinhardt2021-05-101-0/+2
* avcodec: Constify AVCodecsAndreas Rheinhardt2021-04-271-2/+2
* avcodec: Remove deprecated AVCodecContext.coded_frameAndreas Rheinhardt2021-04-271-7/+0
* avcodec: Remove private options from AVCodecContextAndreas Rheinhardt2021-04-271-9/+0
* avcodec/pngenc: remove monowhite from apng formatsPaul B Mahol2021-02-141-1/+1
* Stop hardcoding align=32 in av_frame_get_buffer() calls.Anton Khirnov2020-05-221-2/+2
* avcodec: deprecate Lossless and Intra Only encoder capabilitesJames Almer2020-05-211-1/+1
* lavc/pngenc: check malloc fail before using the pointerJun Zhao2019-05-121-1/+1
* avcodec: stop using deprecated codec flagsJames Almer2017-03-251-2/+2
* huffyuvencdsp: move shared functions to a new lossless_videoencdsp contextJames Almer2017-01-121-5/+5
* huffyuvencdsp: move functions only used by huffyuv from lossless_videodspJames Almer2017-01-121-1/+1
* apng: use side data to pass extradata to muxerAndreas Cadhalpun2016-10-281-3/+15
* avcodec/pngenc: check return value of av_frame_copy()Paul B Mahol2016-04-081-2/+6
* avcodec/pngenc: restore image size before copying frameDmitriy2016-04-081-0/+4
* Merge commit '2862b63783b5556f7f3fb2d097629bc6879f833a'Derek Buitenhuis2016-02-031-4/+17
|\
| * lavc: Move prediction_method to codec private optionsVittorio Giovara2016-01-211-3/+32
| * png: read and write stereo3d frame side data informationKirill Gavrilov2015-10-301-0/+22
* | avcodec/pngenc: Fix mixed up linesizesMichael Niedermayer2016-01-151-2/+2
* | avcodec/pngenc: Replace memcpy by av_image_copy()Michael Niedermayer2016-01-151-6/+3
* | avcodec/png: read and write stereo3d frame side data informationKirill Gavrilov2015-10-281-0/+19
* | avcodec/pngenc: Check that there is at least 1 frameMichael Niedermayer2015-10-071-0/+3
* | avcodec/pngenc: Initialize fctl_chunk to 0Michael Niedermayer2015-10-071-1/+1
* | apng: Support inter-frame compressionDonny Yang2015-08-281-36/+384