2011-09-19 04:13:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Michael Niedermayer (michaelni@gmx.at)
|
|
|
|
*
|
|
|
|
* This file is part of libswresample
|
|
|
|
*
|
|
|
|
* libswresample is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* libswresample is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with libswresample; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-05-01 18:20:21 +00:00
|
|
|
static void RENAME(sum2)(SAMPLE *out, const SAMPLE *in1, const SAMPLE *in2, COEFF *coeffp, int index1, int index2, int len){
|
2011-09-19 04:13:30 +00:00
|
|
|
int i;
|
2012-05-01 18:20:21 +00:00
|
|
|
COEFF coeff1 = coeffp[index1];
|
|
|
|
COEFF coeff2 = coeffp[index2];
|
2011-09-19 04:13:30 +00:00
|
|
|
|
|
|
|
for(i=0; i<len; i++)
|
2011-09-19 07:18:05 +00:00
|
|
|
out[i] = R(coeff1*in1[i] + coeff2*in2[i]);
|
2011-09-19 04:13:30 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 18:20:21 +00:00
|
|
|
static void RENAME(copy)(SAMPLE *out, const SAMPLE *in, COEFF *coeffp, int index, int len){
|
|
|
|
int i;
|
|
|
|
COEFF coeff = coeffp[index];
|
|
|
|
for(i=0; i<len; i++)
|
|
|
|
out[i] = R(coeff*in[i]);
|
2011-09-19 04:13:30 +00:00
|
|
|
}
|
|
|
|
|