From f71d0f0559c2ff075057c5016ff57545b0864afd Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 5 May 2025 20:23:23 +0200 Subject: [PATCH] avcodec/apv_parser: Mark close as av_cold Signed-off-by: Andreas Rheinhardt --- libavcodec/apv_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/apv_parser.c b/libavcodec/apv_parser.c index e5c468f675..fdd575339b 100644 --- a/libavcodec/apv_parser.c +++ b/libavcodec/apv_parser.c @@ -132,7 +132,7 @@ static av_cold int init(AVCodecParserContext *s) return 0; } -static void close(AVCodecParserContext *s) +static av_cold void close(AVCodecParserContext *s) { APVParseContext *p = s->priv_data;