diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-09-14 11:35:26 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-09-24 13:33:29 +0200 |
commit | 5c2d7acb4f99d688b174103972934d10013c085a (patch) | |
tree | ba3be4b9ecf219a91cd240f35834b7b0d34ff548 /libavcodec/codec_desc.c | |
parent | aed8f40d45683c8febfbf98a7863352ff0530309 (diff) | |
download | ffmpeg-5c2d7acb4f99d688b174103972934d10013c085a.tar.gz |
avcodec: add IPU Video decoder and parser
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 9e73dcba27..002ec86fa6 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1798,6 +1798,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("Kodak Photo CD"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_IPU, + .type = AVMEDIA_TYPE_VIDEO, + .name = "ipu", + .long_name = NULL_IF_CONFIG_SMALL("IPU Video"), + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, + }, /* various PCM "codecs" */ { |