From 5247dab6b1ca117de2e6df7f604663b5494d8541 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 15 Feb 2023 14:13:38 +0100 Subject: [PATCH] avcodec/rka: fix long_name --- libavcodec/rka.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/rka.c b/libavcodec/rka.c index 4c93caefff..461baf1e1f 100644 --- a/libavcodec/rka.c +++ b/libavcodec/rka.c @@ -977,7 +977,7 @@ static av_cold int rka_decode_close(AVCodecContext *avctx) const FFCodec ff_rka_decoder = { .p.name = "rka", - CODEC_LONG_NAME("RKA (RK Audio"), + CODEC_LONG_NAME("RKA (RK Audio)"), .p.type = AVMEDIA_TYPE_AUDIO, .p.id = AV_CODEC_ID_RKA, .priv_data_size = sizeof(RKAContext),