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:
authorDiego Biurrun <diego@biurrun.de>2013-05-02 12:20:12 +0400
committerDiego Biurrun <diego@biurrun.de>2013-05-05 22:51:28 +0400
commitbd8ac882140a38868c33c000a430a1292a352533 (patch)
tree0009a4c346a005a0c5dcd51f2b1464ffae65fc37 /libavcodec/svq3.c
parent7abd35a1ffaecfd79fa07b801621ee11ab595c43 (diff)
avcodec: Add av_cold attributes to end functions missing them
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 1ecc1b29d1..6455821b74 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -39,6 +39,8 @@
* correctly decodes this file:
* http://samples.libav.org/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov
*/
+
+#include "libavutil/attributes.h"
#include "internal.h"
#include "avcodec.h"
#include "mpegvideo.h"
@@ -1281,7 +1283,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
return buf_size;
}
-static int svq3_decode_end(AVCodecContext *avctx)
+static av_cold int svq3_decode_end(AVCodecContext *avctx)
{
SVQ3Context *s = avctx->priv_data;
H264Context *h = &s->h;