diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-08-14 10:50:07 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-08-14 10:52:28 +0200 |
commit | 9f702fc8f47477d8b57cf4fc2d6e3577c1ba4fa0 (patch) | |
tree | c9a46d41ccc01896cf81fe1b20baedbe99976365 /libavcodec | |
parent | 20ee692761ca021f449ceb7fcf1fc02607812126 (diff) | |
download | ffmpeg-9f702fc8f47477d8b57cf4fc2d6e3577c1ba4fa0.tar.gz |
avcodec: extend CFHD description
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cfhd.c | 2 | ||||
-rw-r--r-- | libavcodec/cfhdenc.c | 2 | ||||
-rw-r--r-- | libavcodec/codec_desc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cfhd.c b/libavcodec/cfhd.c index 1d7f964e34..2b1db0ed8d 100644 --- a/libavcodec/cfhd.c +++ b/libavcodec/cfhd.c @@ -1583,7 +1583,7 @@ static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src) AVCodec ff_cfhd_decoder = { .name = "cfhd", - .long_name = NULL_IF_CONFIG_SMALL("Cineform HD"), + .long_name = NULL_IF_CONFIG_SMALL("GoPro CineForm HD"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_CFHD, .priv_data_size = sizeof(CFHDContext), diff --git a/libavcodec/cfhdenc.c b/libavcodec/cfhdenc.c index 1ab83c311b..776b6da235 100644 --- a/libavcodec/cfhdenc.c +++ b/libavcodec/cfhdenc.c @@ -904,7 +904,7 @@ static const AVClass cfhd_class = { AVCodec ff_cfhd_encoder = { .name = "cfhd", - .long_name = NULL_IF_CONFIG_SMALL("Cineform HD"), + .long_name = NULL_IF_CONFIG_SMALL("GoPro CineForm HD"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_CFHD, .priv_data_size = sizeof(CFHDEncContext), diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index ced00bd34c..0ae6aee63b 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1526,7 +1526,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_CFHD, .type = AVMEDIA_TYPE_VIDEO, .name = "cfhd", - .long_name = NULL_IF_CONFIG_SMALL("Cineform HD"), + .long_name = NULL_IF_CONFIG_SMALL("GoPro CineForm HD"), .props = AV_CODEC_PROP_LOSSY, }, { |