- Dec 22, 2010
-
-
For our current usage, this doesn't matter, but is more consistent with the rest of the API. We may want to reduce this to an unsigned char[], but I'd rather coordinate that optimization with SILK's planned reduction to 8-bit CDFs, as we may be able to use the same code.
-
This ensures that the various alternative routines in the entropy encoder and decoder (e.g., ec_{enc|dec}_bit_logp()) really are just specialized optimizations of the same general ec_encode() and ec_decode() routines. This is done by randomly picking one to encode with for each symbol, and randomly picking a different one to decode with.
-
- Dec 21, 2010
-
-
Timothy B. Terriberry authored
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).
-
- Nov 09, 2010
-
-
This tunes the entropy model for coarse energy introduced in commit c1c40a76. It uses a constant set of parameters, tuned from about an hour and a half of randomly selected test data encoded for each frame size, prediction type (inter/intra), and band number. These will be slightly sub-optimal for different frame sizes, but should be better than what we were using. For inter, this saves an average of 2.8, 5.2, 7.1, and 6.7 bits/frame for frame sizes of 120, 240, 480, and 960, respectively. For intra, this saves an average of 1.5, 3.0, 4.5, and 5.3 bits/frame (for the same frame sizes, respectively).
-
- Sep 30, 2010
-
-
- Sep 13, 2010
-
-
Jean-Marc Valin authored
-
- Aug 26, 2010
-
-
Jean-Marc Valin authored
-
- Aug 25, 2010
-
-
Jean-Marc Valin authored
-
- Aug 02, 2010
-
-
Jean-Marc Valin authored
-
- Jul 28, 2010
-
-
Jean-Marc Valin authored
-
- Jul 23, 2010
-
-
Jean-Marc Valin authored
-
- Jul 08, 2010
-
-
Jean-Marc Valin authored
-
- Jul 07, 2010
-
-
Jean-Marc Valin authored
Also dropped support for radices above 5.
-
- Jun 21, 2010
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- May 08, 2010
-
-
Jean-Marc Valin authored
The main encode call no longer takes a pointer for the optional resynthesis. It's now done with a call to celt_encode_resynthesis().
-
Jean-Marc Valin authored
-
- Jan 17, 2010
-
-
Jean-Marc Valin authored
-
- Jan 16, 2010
-
-
- Nov 22, 2009
-
-
Jean-Marc Valin authored
-
- Oct 24, 2009
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Oct 22, 2009
-
-
Accuracy for rsqrt, rcp, cos, and log2 is now at the level of truncation error for the current output resolution of these functions. sqrt and exp2 still have non-trivial algebraic error, but this cannot be reduced much further using the current method without additional computation. Also updates the fast float approximations for log2 and exp2 with coefficients that give slightly lower maximum relative error. Patch modified by Jean-Marc Valin to leave the cos approximation as is and leave the check for x<-15 in exp2 as is.
-
- Oct 18, 2009
-
-
Jean-Marc Valin authored
-
- Oct 17, 2009
-
-
Jean-Marc Valin authored
by POSIX. The other _t types that are not part of the API are still there for now. Also, got rid of all that was left of the 64-bit types.
-
- Oct 16, 2009
-
-
Jean-Marc Valin authored
creating the mode. This means that the same mode can be shared for mono and stereo.
-
- Oct 02, 2009
-
-
Jean-Marc Valin authored
-
- Jul 23, 2009
-
-
Jean-Marc Valin authored
Making it so all the information encoded directly with ec_enc_bits() gets stored at the end of the stream, without going through the range coder. This should be both faster and reduce the effects of bit errors. Conflicts: tests/ectest.c
-
- Jul 01, 2009
-
-
Gregory Maxwell authored
-
- Jun 28, 2009
-
-
Gregory Maxwell authored
-
- Jun 05, 2009
-
-
- May 27, 2009
-
-
"tandem-test" which tests the encoder and decoder in many modes.
-
- May 26, 2009
-
-
Adds specialized O(N*log(K)) versions of cwrsi() and O(N) versions of icwrs() for N={3,4,5}, which allows them to operate all the way up to the theoretical pulse limit without serious performance degredation. Also substantially reduces the computation time and stack usage of get_required_bits(). On x86-64, this gives a 2% speed-up for 256 sample frames, and almost a 16% speed-up for 64 sample frames.
-
- Dec 23, 2008
-
-
Jean-Marc Valin authored
problems when building shared libraries only.
-
- Dec 21, 2008
-
-
When I removed the special case for EC_ILOG(0) in commit 06390d08, it broke ec_dec_uint() with _ft=1 (which should encode the value 0 using 0 bits). This feature was tested by ectest.c, but not actually used by libcelt. An assert has been added to ec_dec_uint() to ensure that we don't try to use this feature by accident. ec_enc_uint() was actually correct, but support for this feature has been removed and the assert put in its place.
-
- Nov 11, 2008
-
-
Jean-Marc Valin authored
-
- Oct 05, 2008
-
-
Jean-Marc Valin authored
-
- Sep 22, 2008
-
-
It is no slower with a large number of pulses, and as much as 30% faster with a large number of dimensions.
-
- Sep 19, 2008
-
-
Jean-Marc Valin authored
-
This lets us encode and decode directly from the pulse vector without an intermediate transformation. This makes old streams undecodable. Additionally, ncwrs_u32() has been sped up for large N by using the sliding recurrence from Mohorko et al. ncwrs_u64 could be sped up in a similar manner, but would require a larger table of multiplicative inverses (or several 32x32->64 bit multiplies). Note that U(N,M) is now everywhere 1/2 the value it used to be.
-