From 94ee7da08d2af875f485d4f784d50726cf3078f4 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 9 Feb 2013 16:19:27 +0100 Subject: Remove pointless av_cold attributes in header files The init functions marked as av_cold have to be executed in any case, so there is no gain from trying to mark paths leading to such functions as unlikely. --- libavcodec/mss2dsp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/mss2dsp.h') diff --git a/libavcodec/mss2dsp.h b/libavcodec/mss2dsp.h index b3d67a1e57..34b095bdc5 100644 --- a/libavcodec/mss2dsp.h +++ b/libavcodec/mss2dsp.h @@ -45,6 +45,6 @@ typedef struct MSS2DSPContext { void (*upsample_plane)(uint8_t *plane, int plane_stride, int w, int h); } MSS2DSPContext; -av_cold void ff_mss2dsp_init(MSS2DSPContext* dsp); +void ff_mss2dsp_init(MSS2DSPContext *dsp); #endif /* AVCODEC_MSS2DSP_H */ -- cgit v1.2.3