diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-05-31 12:33:54 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-06-05 13:06:54 +0200 |
commit | 973fab565378cbdd0712977152a66f5b17938d51 (patch) | |
tree | 720f0b9c6e8f3cf64c4134d0ae78a5e30d97a577 /libavcodec/codec_desc.c | |
parent | c6364b711bad1fe2fbd90e5b2798f87080ddf5ea (diff) | |
download | ffmpeg-973fab565378cbdd0712977152a66f5b17938d51.tar.gz |
avcodec: add QOI decoder and demuxer and parser and encoder and muxer
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index e7f0f6a8d4..e2c1c67f5e 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1879,6 +1879,13 @@ static const AVCodecDescriptor codec_descriptors[] = { AV_CODEC_PROP_LOSSLESS, .mime_types= MT("image/jxl"), }, + { + .id = AV_CODEC_ID_QOI, + .type = AVMEDIA_TYPE_VIDEO, + .name = "qoi", + .long_name = NULL_IF_CONFIG_SMALL("QOI (Quite OK Image)"), + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, + }, /* various PCM "codecs" */ { |