fixed-point: slightly increasing the decoder accuracy again
Update the log2 approximation to accomodate the increased bit precision from bd0610d21b28b76095a49e601df44fb792b96369. This requires another term in the power series to reduce the error to the level of truncation (peak absolute error 0.621785). Also refactor the rounding bias term so that further changes to DB_SHIFT will leave the result unbiased.
fixed-point: Further reduction in mismatch
fixed-point: reducing the mismatch in the folded part
Increasing log energy resolution
Using the mean energy even when start>0
Improves fixed-point precision for quant_coarse_energy
Fix quant_bands() for start != 0
Allowing CELT to skip the low frequencies
Updating CELT_RESET_STATE to clear some fields that were "recently" added.
Getting "make dist" to work again with the files that got removed
Change name of libcelt to libcelt0
Updates celtclient to the new API.
fixed-point: converted PLC filters and LPC parameters
fixed-point: starting conversion of the new PLC
Adding a safeguard against unstable LPC, so now there's no way (that I can
Making new PLC code work in fixed-point even though it's still using float
This fixes a bug in stereo PLC (offset wasn't changed between channels)
PLC: Added lag windowing and constraint to synthesis energy
Varlength arrays fix for C89
Oops, forgot to free the pitch bufer
Fixing (read) array overrun for 1024-sample frames.
Some work on the pitch search weighting filter (still disabled)
Reorganised the pitch code to simplify the PLC case and fixed a buffer overflow
Fixing a few memory errors
Use stack_alloc for pitch.c
Renamed MDCT functions to avoid symbol clashes with Vorbis
Removing original freq-domain pitch code
celt_ilog2() is only used in fixed-point mode
Expose the normalized range for reciprocal square roots in fixed-point mode. This allows subsequnt calculations to use the full precision of the result.
SMALL_FOOTPRINT preserves the special n=1 cwrs case
Added a SMALL_FOOTPRINT option
removing more unused code
Removing unused code in the entropy coder
prevent busting at ridiculously low bit-rate VBR
Making sure the VBR controller never busts the number of bytes allowed
Better computation of the VBR rate upper bound and reducing the coarse energy
Enhancements the fixed-point approximations of non-linear functions.
Allow coarse energy to take almost all the bits. Also, fixed a some issues with
Making the multiplication in normalise_residual() produce a 32-bit result just
Accuracy improvements to the fixed-point celt_rsqrt().
This should prevent a rare divide-by-zero in the pitch gain code
New VBR rate controller that doesn't allow more than one frame worth of excess
fixed a few trivial bugs: exporting celt_strerror(), changed DB_SCALING to a
Removed the _t from all the celt*_t types to avoid clashing with POSIX
Updated copyright notices
Changed all the celt*int*_t types to remove the _t suffix, which is reserved
Constrain the pitch gain to prevent potential instabilities.
Now using a unique ID for CELT_ALLOC_FAIL
Improved error handling, and implemented celt_strerror()
The number of channels is now set when creating the states rather than when
first step for removing the number of channels from the mode
Adjusting the allocation for stereo directly in the alloc function rather than
merged the code for quant_bands() and unquant_bands()
Renamed mix_pitch_and_residual() to normalise_residual(), after minor
Further simplifications to mix_pitch_and_residual() (which no longer does
Doing the mdct shaping in the normalised domain, so that energy is preserved
making compute_ebands() a tiny bit less stupid.
moved the de-emphasis code to a separate function (shared between encoder and
Simplifications to the code
more stereo simplifications
No longer interleaving channels of the normalised spectrum. Also fixed the
simplifications to the stereo code
Fix for some test program compat and an assertion that didn't make sense anymore
Demoved the divisions from the inner pitch prediction loops, bumped the version
Fix for folding_decision() in stereo mode and more cleaning up of the code
Fix stereo mismatch problem
Bringing back min_bins=3 for now
Tuning the spreading rotations
More simplifications from denorm pitch
Removed code that is no longer necessary with denorm pitch and spreading
enabling denorm pitch only at low bit-rate
fixed-point: denorm pitch converted
denorm pitch works in fixed-point (though there's still some floats left)
doing pitch in denormalized domain
Only calling intra_fold() when there's no pulse allocated
Re-introducing the successive rotations as a way to control low-bitrate
Better fading for PLC: no fading for the first loss, muting after 6
Disabling some checks for the C55
Making it possible to use the C64x FFT
Forcing side to be orthogonal to mid for N=2. This saves one degree of freedom.
Making sure each band has a width that's a multiple of the number of MDCTs
Fixes typo in C6x macro.
Allocating enough mem in celtenc/celtdec to handle 1024-sample frames
This fixes a VBR bug introduced by raw bits. We should not write any raw
Changing some code to use BITRES directly instead of its value.
Raw bits encoding/decoding functions renamed to *_raw() and re-introducing
Raw bits enabled for the multiply-free range coder too.