From 5474ec2ac8a4964c4d6a0b51cd00a0ec2e7bb9a6 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Fri, 23 Jul 2010 21:46:14 +0000 Subject: Move renormalization of the VP56 arith decoder to before decoding a bit No difference at the moment, but allows a future branchy variant of vp56_rac_get_prob to be significantly faster Originally committed as revision 24467 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp56.h | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) (limited to 'libavcodec/vp56.h') diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index a1904d56d5..b7c1887596 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -191,10 +191,11 @@ static inline void vp56_init_range_decoder(VP56RangeCoder *c, c->code_word = bytestream_get_be16(&c->buffer); } -static av_always_inline void vp56_rac_renorm(VP56RangeCoder *c, unsigned int code_word) +static av_always_inline unsigned int vp56_rac_renorm(VP56RangeCoder *c) { int shift = ff_h264_norm_shift[c->high] - 1; int bits = c->bits; + unsigned int code_word = c->code_word; c->high <<= shift; code_word <<= shift; @@ -204,14 +205,14 @@ static av_always_inline void vp56_rac_renorm(VP56RangeCoder *c, unsigned int cod bits -= 8; } c->bits = bits; - c->code_word = code_word; + return code_word; } static inline int vp56_rac_get_prob(VP56RangeCoder *c, uint8_t prob) { /* Don't put c->high in a local variable; if we do that, gcc gets * the stupids and turns the code below into a branch again. */ - unsigned int code_word = c->code_word; + unsigned int code_word = vp56_rac_renorm(c); unsigned int low = 1 + (((c->high - 1) * prob) >> 8); unsigned int low_shift = low << 8; int bit = code_word >= low_shift; @@ -220,31 +221,26 @@ static inline int vp56_rac_get_prob(VP56RangeCoder *c, uint8_t prob) * instead of branches -- faster, as this branch is basically * unpredictable. */ c->high = bit ? c->high - low : low; - code_word = bit ? code_word - low_shift : code_word; + c->code_word = bit ? code_word - low_shift : code_word; - vp56_rac_renorm(c, code_word); return bit; } static inline int vp56_rac_get(VP56RangeCoder *c) { + unsigned int code_word = vp56_rac_renorm(c); /* equiprobable */ int low = (c->high + 1) >> 1; unsigned int low_shift = low << 8; - int bit = c->code_word >= low_shift; + int bit = code_word >= low_shift; if (bit) { - c->high = (c->high - low) << 1; - c->code_word -= low_shift; + c->high -= low; + code_word -= low_shift; } else { - c->high = low << 1; + c->high = low; } - /* normalize */ - c->code_word <<= 1; - if (++c->bits == 0 && c->buffer < c->end) { - c->bits = -8; - c->code_word |= *c->buffer++; - } + c->code_word = code_word; return bit; } -- cgit v1.2.3