Displaying 2 results from an estimated 2 matches for "celt_reset_state".
2010 Jan 27
1
Some additions to CELT_RESET_STATE for 0.7.1
Hi Jean-Marc,
As the self-appointed keeper of CELT_RESET_STATE (since I may be the
only one actually using it) I've been kind of lax lately and have only
now tried to reconcile it with the state structures in the 0.7.1 drop. I
think (and feel free to contradict me here) that the following lines
should be added to CELT_RESET_STATE in celt_encoder_ctl:...
2009 May 20
1
A (minor) bug and a request
Cheers all.
I believe that the first line in the function FLOAT2INT16 in celt.c
which is now:
x = x*32768.;
should be:
x = SCALEIN(x);
This only makes a difference if you change the SCALEIN and SCALEOUT
macros (which I do).
The new feature I would like to request is the addition of a
CELT_RESET_STATE control for both the encoder and decoder. I cache
encoder and decoder instances and would like to be able to reset them to
a newly minted state when I change streams.
Thanx,
John Ridges