diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-03 12:09:07 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-03 12:09:07 +0200 |
commit | 22f3b6286eaa0c05febcf83b065fdb543cbdd604 (patch) | |
tree | a32c1159eb0552632607329754704e16b8184eb6 /libavfilter/vf_xbr.c | |
parent | 8ca89e52df89b87b278f9d7e369d1b064b740415 (diff) | |
download | ffmpeg-22f3b6286eaa0c05febcf83b065fdb543cbdd604.tar.gz |
avfilter: add av_cold where it is missing
Diffstat (limited to 'libavfilter/vf_xbr.c')
-rw-r--r-- | libavfilter/vf_xbr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_xbr.c b/libavfilter/vf_xbr.c index 87810c88f1..a381be4553 100644 --- a/libavfilter/vf_xbr.c +++ b/libavfilter/vf_xbr.c @@ -380,7 +380,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) return ff_filter_frame(outlink, out); } -static int init(AVFilterContext *ctx) +static av_cold int init(AVFilterContext *ctx) { XBRContext *s = ctx->priv; static const xbrfunc_t xbrfuncs[] = {xbr2x, xbr3x, xbr4x}; |