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/vc1.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/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 466a58ecde..6f24c0e4af 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -455,9 +455,9 @@ int ff_vc1_parse_frame_header (VC1Context *v, GetBitContext *gb); int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext *gb); int ff_vc1_init_common(VC1Context *v); -av_cold int ff_vc1_decode_init_alloc_tables(VC1Context *v); -av_cold void ff_vc1_init_transposed_scantables(VC1Context *v); -av_cold int ff_vc1_decode_end(AVCodecContext *avctx); +int ff_vc1_decode_init_alloc_tables(VC1Context *v); +void ff_vc1_init_transposed_scantables(VC1Context *v); +int ff_vc1_decode_end(AVCodecContext *avctx); void ff_vc1_decode_blocks(VC1Context *v); #endif /* AVCODEC_VC1_H */ |