You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/g728_template: make hist parameter constant
This commit is contained in:
@ -39,7 +39,7 @@ static void convolve(float *tgt, const float *src, int len, int n)
|
|||||||
*/
|
*/
|
||||||
static void do_hybrid_window(void (*vector_fmul)(float *dst, const float *src0, const float *src1, int len),
|
static void do_hybrid_window(void (*vector_fmul)(float *dst, const float *src0, const float *src1, int len),
|
||||||
int order, int n, int non_rec, float *out,
|
int order, int n, int non_rec, float *out,
|
||||||
float *hist, float *out2, const float *window)
|
const float *hist, float *out2, const float *window)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
float buffer1[MAX_BACKWARD_FILTER_ORDER + 1];
|
float buffer1[MAX_BACKWARD_FILTER_ORDER + 1];
|
||||||
|
Reference in New Issue
Block a user