diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-09 16:19:27 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-23 20:13:47 +0100 |
commit | 94ee7da08d2af875f485d4f784d50726cf3078f4 (patch) | |
tree | 91f7945da0a8b59af94f831a65f576e4d1efabf8 /libavcodec/pnm.h | |
parent | b5f536d24b5ae360503935c34d5d59fa5181b94d (diff) | |
download | ffmpeg-94ee7da08d2af875f485d4f784d50726cf3078f4.tar.gz |
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.
Diffstat (limited to 'libavcodec/pnm.h')
-rw-r--r-- | libavcodec/pnm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pnm.h b/libavcodec/pnm.h index 702921fbdf..efba0d8183 100644 --- a/libavcodec/pnm.h +++ b/libavcodec/pnm.h @@ -34,7 +34,7 @@ typedef struct PNMContext { } PNMContext; int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s); -av_cold int ff_pnm_end(AVCodecContext *avctx); -av_cold int ff_pnm_init(AVCodecContext *avctx); +int ff_pnm_end(AVCodecContext *avctx); +int ff_pnm_init(AVCodecContext *avctx); #endif /* AVCODEC_PNM_H */ |