diff options
author | Jason Garrett-Glaser | 2010-08-12 01:11:32 +0000 |
---|---|---|
committer | Jason Garrett-Glaser | 2010-08-12 01:11:32 +0000 |
commit | 05c04cdf54fee9332d337380fd4cd8502bdac2be (patch) | |
tree | a34738cea5f0b5286f5f31c996c8f634361cc31c /libavcodec/vp56.h | |
parent | d2064fd42b2dd1cf1c44e5c4fc4b8aaba6698637 (diff) |
VP5/6/8: ~7% faster arithmetic decoding
Grab from the bitstream in 16-bit chunks instead of 8-bit chunks.
TODO: grab in 32-bit chunks on 64-bit systems.
Originally committed as revision 24783 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r-- | libavcodec/vp56.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 50a39f75bc..da6b1b64b8 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -194,8 +194,8 @@ static av_always_inline unsigned int vp56_rac_renorm(VP56RangeCoder *c) code_word <<= shift; bits += shift; if(bits >= 0 && c->buffer < c->end) { - code_word |= *c->buffer++ << bits; - bits -= 8; + code_word |= bytestream_get_be16(&c->buffer) << bits; + bits -= 16; } c->bits = bits; return code_word; @@ -211,7 +211,7 @@ static av_always_inline int vp56_rac_get_prob(VP56RangeCoder *c, uint8_t prob) { unsigned int code_word = vp56_rac_renorm(c); unsigned int low = 1 + (((c->high - 1) * prob) >> 8); - unsigned int low_shift = low << 8; + unsigned int low_shift = low << 16; int bit = code_word >= low_shift; c->high = bit ? c->high - low : low; @@ -226,7 +226,7 @@ static av_always_inline int vp56_rac_get_prob_branchy(VP56RangeCoder *c, int pro { unsigned long code_word = vp56_rac_renorm(c); unsigned low = 1 + (((c->high - 1) * prob) >> 8); - unsigned low_shift = low << 8; + unsigned low_shift = low << 16; if (code_word >= low_shift) { c->high -= low; @@ -244,7 +244,7 @@ static av_always_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; + unsigned int low_shift = low << 16; int bit = code_word >= low_shift; if (bit) { c->high -= low; |