diff options
author | Tom Butterworth <bangnoise@gmail.com> | 2016-11-04 13:57:18 +0000 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2016-11-04 11:19:47 -0800 |
commit | 92280f86b4065be34f52531c73068bbe7f33febd (patch) | |
tree | 7dcb939b57c4437a6c395d42881a7532cf9e2721 | |
parent | fb240a6276fa36fe120aadd67b4ca774e354f22b (diff) | |
download | ffmpeg-92280f86b4065be34f52531c73068bbe7f33febd.tar.gz |
avcodec/hap: consistent name for codec
"Vidvox Hap", not "Vidvox Hap encoder" or "Vidvox Hap decoder". Fixes
bad name in "ffmpeg -codecs", matches other codec naming.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/codec_desc.c | 2 | ||||
-rw-r--r-- | libavcodec/hapdec.c | 2 | ||||
-rw-r--r-- | libavcodec/hapenc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 2612215b66..9dbe2dc7ea 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1273,7 +1273,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_HAP, .type = AVMEDIA_TYPE_VIDEO, .name = "hap", - .long_name = NULL_IF_CONFIG_SMALL("Vidvox Hap decoder"), + .long_name = NULL_IF_CONFIG_SMALL("Vidvox Hap"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, }, { diff --git a/libavcodec/hapdec.c b/libavcodec/hapdec.c index f1d44cda24..a1cb0c76aa 100644 --- a/libavcodec/hapdec.c +++ b/libavcodec/hapdec.c @@ -426,7 +426,7 @@ static av_cold int hap_close(AVCodecContext *avctx) AVCodec ff_hap_decoder = { .name = "hap", - .long_name = NULL_IF_CONFIG_SMALL("Vidvox Hap decoder"), + .long_name = NULL_IF_CONFIG_SMALL("Vidvox Hap"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_HAP, .init = hap_init, diff --git a/libavcodec/hapenc.c b/libavcodec/hapenc.c index c09a639932..076923b87d 100644 --- a/libavcodec/hapenc.c +++ b/libavcodec/hapenc.c @@ -318,7 +318,7 @@ static const AVClass hapenc_class = { AVCodec ff_hap_encoder = { .name = "hap", - .long_name = NULL_IF_CONFIG_SMALL("Vidvox Hap encoder"), + .long_name = NULL_IF_CONFIG_SMALL("Vidvox Hap"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_HAP, .priv_data_size = sizeof(HapContext), |