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/xbm_parser.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/xbm_parser.c')
-rw-r--r-- | libavcodec/xbm_parser.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/xbm_parser.c b/libavcodec/xbm_parser.c index 28aae49ee3..436aec96ab 100644 --- a/libavcodec/xbm_parser.c +++ b/libavcodec/xbm_parser.c @@ -24,7 +24,10 @@ * XBM parser */ -#include "libavutil/common.h" +#include <stdint.h> + +#include "libavutil/attributes.h" +#include "libavutil/avutil.h" #include "parser.h" @@ -41,7 +44,7 @@ typedef struct XBMParseContext { #define END ((';' << 8) | ('\n' << 0)) -static int xbm_init(AVCodecParserContext *s) +static av_cold int xbm_init(AVCodecParserContext *s) { XBMParseContext *bpc = s->priv_data; |