From d4fb110f5c68dd3ecfc3d6a46d382cbbbf4952ed Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 6 May 2024 12:24:26 +0200 Subject: [PATCH] avcodec/aac/aacdec: Mark flush as cold Reviewed-by: Lynne Signed-off-by: Andreas Rheinhardt --- libavcodec/aac/aacdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aac/aacdec.c b/libavcodec/aac/aacdec.c index 470e46b00f..82834b77bf 100644 --- a/libavcodec/aac/aacdec.c +++ b/libavcodec/aac/aacdec.c @@ -531,7 +531,7 @@ static int output_configure(AACDecContext *ac, return 0; } -static void flush(AVCodecContext *avctx) +static av_cold void flush(AVCodecContext *avctx) { AACDecContext *ac= avctx->priv_data; int type, i, j;