Entropy coder clean-up.
This simplifies a good bit of the error handling, and should make it impossible to overrun the buffer in the encoder or decoder, while still allowing tell() to operate correctly after a bust. The encoder now tries to keep the range coder data intact after a bust instead of corrupting it with extra bits data, though this is not a guarantee (too many extra bits may have already been flushed). It also now correctly reports errors when the bust occurs merging the last byte of range coder and extra bits. A number of abstraction barrier violations were cleaned up, as well. This patch also includes a number of minor performance improvements: ec_{enc|dec}_bits() in particular should be much faster. Finally, tf_select was changed to be coded with the range coder rather than extra bits, so that it is at the front of the packet (for unequal error protection robustness).
Showing
- libcelt/celt.c 3 additions, 3 deletionslibcelt/celt.c
- libcelt/entcode.h 19 additions, 17 deletionslibcelt/entcode.h
- libcelt/entdec.c 19 additions, 31 deletionslibcelt/entdec.c
- libcelt/entdec.h 10 additions, 8 deletionslibcelt/entdec.h
- libcelt/entenc.c 44 additions, 39 deletionslibcelt/entenc.c
- libcelt/entenc.h 8 additions, 7 deletionslibcelt/entenc.h
- libcelt/quant_bands.c 11 additions, 5 deletionslibcelt/quant_bands.c
- libcelt/rangedec.c 48 additions, 49 deletionslibcelt/rangedec.c
- libcelt/rangeenc.c 80 additions, 62 deletionslibcelt/rangeenc.c
- tests/ectest.c 20 additions, 1 deletiontests/ectest.c
Loading
Please register or sign in to comment