diff options
author | Andreas Rheinhardt <[email protected]> | 2025-09-05 01:09:49 +0200 |
---|---|---|
committer | James Almer <[email protected]> | 2025-09-13 20:37:03 +0000 |
commit | 1df63acdc486d08fccbd0f3d19eb0398486c8e00 (patch) | |
tree | 27761d78ce04dd01afc2cf90c1d1eb480de0c3e1 /libavcodec/ccaption_dec.c | |
parent | bc545bae3be34e71980f93259dfca1b8bb28bd92 (diff) |
avcodec: Add av_cold to flush,init,close functions missing it
Signed-off-by: Andreas Rheinhardt <[email protected]>
Diffstat (limited to 'libavcodec/ccaption_dec.c')
-rw-r--r-- | libavcodec/ccaption_dec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c index 6f4d4fca41..9b6c766d87 100644 --- a/libavcodec/ccaption_dec.c +++ b/libavcodec/ccaption_dec.c @@ -23,6 +23,7 @@ #include "avcodec.h" #include "ass.h" #include "codec_internal.h" +#include "libavutil/attributes.h" #include "libavutil/opt.h" #define SCREEN_ROWS 15 @@ -309,7 +310,7 @@ static av_cold int close_decoder(AVCodecContext *avctx) return 0; } -static void flush_decoder(AVCodecContext *avctx) +static av_cold void flush_decoder(AVCodecContext *avctx) { CCaptionSubContext *ctx = avctx->priv_data; ctx->screen[0].row_used = 0; |