mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
Add doxy comments to eq() and do_voice()
Originally committed as revision 13581 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fbe52e4188
commit
2f7d6835b6
@ -71,7 +71,10 @@ static int t_sqrt(unsigned int x)
|
|||||||
return (ff_sqrt(x << 20) << s) << 2;
|
return (ff_sqrt(x << 20) << s) << 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* do 'voice' */
|
/**
|
||||||
|
* Evaluate the LPC filter coefficients from the reflection coefficients.
|
||||||
|
* Does the inverse of the eq() function.
|
||||||
|
*/
|
||||||
static void do_voice(const int *a1, int *a2)
|
static void do_voice(const int *a1, int *a2)
|
||||||
{
|
{
|
||||||
int buffer[10];
|
int buffer[10];
|
||||||
@ -246,6 +249,13 @@ static int dec1(int16_t *decsp, const int *data, const int *inp, int f)
|
|||||||
return rms(data, f);
|
return rms(data, f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Evaluate the reflection coefficients from the filter coefficients.
|
||||||
|
* Does the inverse of the do_voice() function.
|
||||||
|
*
|
||||||
|
* @return 1 if one of the reflection coefficients is of magnitude greater than
|
||||||
|
* 4095, 0 if not.
|
||||||
|
*/
|
||||||
static int eq(const int16_t *in, int *target)
|
static int eq(const int16_t *in, int *target)
|
||||||
{
|
{
|
||||||
int retval = 0;
|
int retval = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user