Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-06 12:27:54 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-06 12:28:27 +0400
commitb50ab3a4c7a1225862dcf0f0bd00ffef6acfdcbb (patch)
tree38f6b0ca525e426f0ed87f8be0177462487e6c76 /libavcodec/bgmc.c
parent5c2ccf83df3bfea03c843910c41ee99bd4d64129 (diff)
parentbd8ac882140a38868c33c000a430a1292a352533 (diff)
Merge commit 'bd8ac882140a38868c33c000a430a1292a352533'
* commit 'bd8ac882140a38868c33c000a430a1292a352533': avcodec: Add av_cold attributes to end functions missing them Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/bgmc.c')
-rw-r--r--libavcodec/bgmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bgmc.c b/libavcodec/bgmc.c
index d646d903f6..82feda2a44 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);