Re: [libav-devel] [PATCH] ralf: read Huffman code lengths without GetBitContext

2012-03-24 Thread Kostya Shishkov
On Sat, Mar 24, 2012 at 11:42:29AM +0100, Vitor Sessak wrote: > On 03/24/2012 07:35 AM, Kostya Shishkov wrote: > >Those descriptions are stored in nibbles, so they are easy to extract. > >And this way we don't need to pad tables for possible bit reader overreads. > >--- > > libavcodec/ralf.c |

Re: [libav-devel] [PATCH] ralf: read Huffman code lengths without GetBitContext

2012-03-24 Thread Vitor Sessak
On 03/24/2012 07:35 AM, Kostya Shishkov wrote: Those descriptions are stored in nibbles, so they are easy to extract. And this way we don't need to pad tables for possible bit reader overreads. --- libavcodec/ralf.c |8 1 files changed, 4 insertions(+), 4 deletions(-) LGTM -Vit

[libav-devel] [PATCH] ralf: read Huffman code lengths without GetBitContext

2012-03-23 Thread Kostya Shishkov
Those descriptions are stored in nibbles, so they are easy to extract. And this way we don't need to pad tables for possible bit reader overreads. --- libavcodec/ralf.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/ralf.c b/libavcodec/ralf.c index 38e7e