diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-05-02 10:20:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-05 20:51:28 +0200 |
commit | bd8ac882140a38868c33c000a430a1292a352533 (patch) | |
tree | 0009a4c346a005a0c5dcd51f2b1464ffae65fc37 /libavcodec/bgmc.c | |
parent | 7abd35a1ffaecfd79fa07b801621ee11ab595c43 (diff) | |
download | ffmpeg-bd8ac882140a38868c33c000a430a1292a352533.tar.gz |
avcodec: Add av_cold attributes to end functions missing them
Diffstat (limited to 'libavcodec/bgmc.c')
-rw-r--r-- | libavcodec/bgmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bgmc.c b/libavcodec/bgmc.c index b8f4bee2aa..c0ebcacb04 100644 --- a/libavcodec/bgmc.c +++ b/libavcodec/bgmc.c @@ -477,7 +477,7 @@ av_cold int ff_bgmc_init(AVCodecContext *avctx, /** Release the lookup table arrays */ -void ff_bgmc_end(uint8_t **cf_lut, int **cf_lut_status) +av_cold void ff_bgmc_end(uint8_t **cf_lut, int **cf_lut_status) { av_freep(cf_lut); av_freep(cf_lut_status); |