diff options
author | Dirk Farin <dirk.farin@gmail.com> | 2013-09-02 14:33:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-03 19:34:04 +0200 |
commit | 902a5fa7228d92bf7e0a8f523a25cf72d31afab4 (patch) | |
tree | 0dc192452ab17e725c16fb40cad7107dccc91ded /libavcodec/codec_desc.c | |
parent | 771e2e59e2afeba6f195645678645b8c874e59a2 (diff) | |
download | ffmpeg-902a5fa7228d92bf7e0a8f523a25cf72d31afab4.tar.gz |
avformat: H265 demuxer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 523b61761f..1e4cf2e23e 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -226,6 +226,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_LOSSLESS, }, { + .id = AV_CODEC_ID_H265, + .type = AVMEDIA_TYPE_VIDEO, + .name = "h265", + .long_name = NULL_IF_CONFIG_SMALL("H.265 / HEVC"), + .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_LOSSLESS, + }, + { .id = AV_CODEC_ID_INDEO3, .type = AVMEDIA_TYPE_VIDEO, .name = "indeo3", |