avcodec: Add av_cold attributes to end functions missing them

This commit is contained in:
Diego Biurrun
2013-05-02 10:20:12 +02:00
parent 7abd35a1ff
commit bd8ac88214
7 changed files with 14 additions and 10 deletions

View File

@@ -26,6 +26,7 @@
*/
//#define DEBUG
#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "internal.h"
#include "avcodec.h"
@@ -2355,7 +2356,7 @@ static void flush(AVCodecContext *avctx)
ff_mpeg_flush(avctx);
}
static int mpeg_decode_end(AVCodecContext *avctx)
static av_cold int mpeg_decode_end(AVCodecContext *avctx)
{
Mpeg1Context *s = avctx->priv_data;