From 0f26eec23e8fa26661f5f806b8825cc4ce2c5381 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 12 Oct 2007 08:43:23 +0000 Subject: [PATCH] =?UTF-8?q?Disable=20unused=20code;=20fixes=20several=20gc?= =?UTF-8?q?c=20warnings:=20cabac.h:112:=20warning:=20=E2=80=98put=5Fcabac?= =?UTF-8?q?=5Fstatic=E2=80=99=20defined=20but=20not=20used=20cabac.h:158:?= =?UTF-8?q?=20warning:=20=E2=80=98put=5Fcabac=5Fterminate=E2=80=99=20defin?= =?UTF-8?q?ed=20but=20not=20used=20cabac.h:186:=20warning:=20=E2=80=98put?= =?UTF-8?q?=5Fcabac=5Fu=E2=80=99=20defined=20but=20not=20used=20cabac.h:22?= =?UTF-8?q?1:=20warning:=20=E2=80=98put=5Fcabac=5Fueg=E2=80=99=20defined?= =?UTF-8?q?=20but=20not=20used=20cabac.h:273:=20warning:=20=E2=80=98refill?= =?UTF-8?q?2=E2=80=99=20defined=20but=20not=20used=20cabac.h:811:=20warnin?= =?UTF-8?q?g:=20=E2=80=98get=5Fcabac=5Fu=E2=80=99=20defined=20but=20not=20?= =?UTF-8?q?used=20cabac.h:827:=20warning:=20=E2=80=98get=5Fcabac=5Fueg?= =?UTF-8?q?=E2=80=99=20defined=20but=20not=20used?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 10713 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cabac.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index bb682d9498..f4feb493d7 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -90,6 +90,7 @@ static inline void renorm_cabac_encoder(CABACContext *c){ } } +#if 0 static void put_cabac(CABACContext *c, uint8_t * const state, int bit){ int RangeLPS= ff_h264_lps_range[2*(c->range&0xC0) + *state]; @@ -259,6 +260,7 @@ static void put_cabac_ueg(CABACContext *c, uint8_t * state, int v, int max, int put_cabac_bypass(c, sign); } } +#endif /* 0 */ static void refill(CABACContext *c){ #if CABAC_BITS == 16 @@ -270,6 +272,7 @@ static void refill(CABACContext *c){ c->bytestream+= CABAC_BITS/8; } +#if 0 static void refill2(CABACContext *c){ int i, x; @@ -287,6 +290,7 @@ static void refill2(CABACContext *c){ c->low += x<bytestream+= CABAC_BITS/8; } +#endif static inline void renorm_cabac_decoder(CABACContext *c){ while(c->range < 0x100){ @@ -805,6 +809,7 @@ static int get_cabac_terminate(CABACContext *c){ } } +#if 0 /** * Get (truncated) unary binarization. */ @@ -860,5 +865,6 @@ static int get_cabac_ueg(CABACContext *c, uint8_t * state, int max, int is_signe }else return i; } +#endif /* 0 */ #endif /* CABAC_H */