summaryrefslogtreecommitdiff
path: root/libavcodec/mss12.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-09 16:19:27 +0100
committerDiego Biurrun <diego@biurrun.de>2013-02-23 20:13:47 +0100
commit94ee7da08d2af875f485d4f784d50726cf3078f4 (patch)
tree91f7945da0a8b59af94f831a65f576e4d1efabf8 /libavcodec/mss12.h
parentb5f536d24b5ae360503935c34d5d59fa5181b94d (diff)
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/mss12.h')
-rw-r--r--libavcodec/mss12.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mss12.h b/libavcodec/mss12.h
index f5d03662b8..5b1fee8913 100644
--- a/libavcodec/mss12.h
+++ b/libavcodec/mss12.h
@@ -95,9 +95,9 @@ int ff_mss12_decode_rect(SliceContext *ctx, ArithCoder *acoder,
int x, int y, int width, int height);
void ff_mss12_model_update(Model *m, int val);
void ff_mss12_slicecontext_reset(SliceContext *sc);
-av_cold int ff_mss12_decode_init(MSS12Context *c, int version,
- SliceContext* sc1, SliceContext *sc2);
-av_cold int ff_mss12_decode_end(MSS12Context *ctx);
+int ff_mss12_decode_init(MSS12Context *c, int version,
+ SliceContext *sc1, SliceContext *sc2);
+int ff_mss12_decode_end(MSS12Context *ctx);
#define ARITH_GET_BIT(VERSION) \
static int arith ## VERSION ## _get_bit(ArithCoder *c) \