mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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>
This commit is contained in:
parent
fb240a6276
commit
92280f86b4
@ -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,
|
||||
},
|
||||
{
|
||||
|
@ -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,
|
||||
|
@ -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),
|
||||
|
Loading…
x
Reference in New Issue
Block a user