diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-27 20:12:52 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-01 01:34:26 +0100 |
commit | ec0bd89297a19fa59684e51e94f3926584aa984d (patch) | |
tree | 754aa89c3bbd65b686be0ccf378b0e9ee2b346bd | |
parent | 9209350f8d7365907b811cbc012a8ab899cc5a60 (diff) | |
download | ffmpeg-ec0bd89297a19fa59684e51e94f3926584aa984d.tar.gz |
avcodec/libxevd: Use CODEC_LONG_NAME()
Brings the length of the line down to less than 80 chars.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/libxevd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libxevd.c b/libavcodec/libxevd.c index 9705f68751..fd12a1f150 100644 --- a/libavcodec/libxevd.c +++ b/libavcodec/libxevd.c @@ -471,7 +471,7 @@ static av_cold int libxevd_close(AVCodecContext *avctx) const FFCodec ff_libxevd_decoder = { .p.name = "evc", - .p.long_name = NULL_IF_CONFIG_SMALL("EVC / MPEG-5 Essential Video Coding (EVC)"), + CODEC_LONG_NAME("EVC / MPEG-5 Essential Video Coding (EVC)"), .p.type = AVMEDIA_TYPE_VIDEO, .p.id = AV_CODEC_ID_EVC, .init = libxevd_init, |