diff options
author | Peter Ross <pross@xvid.org> | 2022-10-14 18:19:49 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2022-10-18 13:20:37 +1100 |
commit | 3141dbb7adf1e2bd5b9ff700312d7732c958b8df (patch) | |
tree | 2bd8de3722268fcac8d170903bb16f25a0fcc5d7 /libavcodec/codec_desc.c | |
parent | e253bc4b1703ff4f1abe42fe83af2b784411a701 (diff) | |
download | ffmpeg-3141dbb7adf1e2bd5b9ff700312d7732c958b8df.tar.gz |
avcodec: ViewQuest VQC decoder
Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Reviewed-by: Tomas Härdin <git@haerdin.se>
Signed-off-by: Peter Ross <pross@xvid.org>
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 93b18f9072..24a0433dba 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1916,6 +1916,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("Media 100i"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_VQC, + .type = AVMEDIA_TYPE_VIDEO, + .name = "vqc", + .long_name = NULL_IF_CONFIG_SMALL("ViewQuest VQC"), + .props = AV_CODEC_PROP_LOSSY, + }, /* various PCM "codecs" */ { |