[FFmpeg-cvslog] rematrix: add type for coefficients
Michael Niedermayer
git at videolan.org
Wed Oct 26 01:08:20 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Oct 26 00:40:29 2011 +0200| [1e40b2c22b24a5758bcfce7620355750313c930d] | committer: Michael Niedermayer
rematrix: add type for coefficients
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1e40b2c22b24a5758bcfce7620355750313c930d
---
libswresample/rematrix.c | 3 +++
libswresample/rematrix_template.c | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index 4a3ada6..b3e3e4a 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -25,16 +25,19 @@
#define ONE (1.0)
#define R(x) x
#define SAMPLE float
+#define COEFF float
#define RENAME(x) x ## _float
#include "rematrix_template.c"
#undef SAMPLE
#undef RENAME
#undef R
#undef ONE
+#undef COEFF
#define ONE (-32768)
#define R(x) (((x) + 16384)>>15)
#define SAMPLE int16_t
+#define COEFF int
#define RENAME(x) x ## _s16
#include "rematrix_template.c"
diff --git a/libswresample/rematrix_template.c b/libswresample/rematrix_template.c
index 0c45fc9..862430e 100644
--- a/libswresample/rematrix_template.c
+++ b/libswresample/rematrix_template.c
@@ -19,14 +19,14 @@
*/
-static void RENAME(sum2)(SAMPLE *out, const SAMPLE *in1, const SAMPLE *in2, SAMPLE coeff1, SAMPLE coeff2, int len){
+static void RENAME(sum2)(SAMPLE *out, const SAMPLE *in1, const SAMPLE *in2, COEFF coeff1, COEFF coeff2, int len){
int i;
for(i=0; i<len; i++)
out[i] = R(coeff1*in1[i] + coeff2*in2[i]);
}
-static void RENAME(copy)(SAMPLE *out, const SAMPLE *in, SAMPLE coeff, int len){
+static void RENAME(copy)(SAMPLE *out, const SAMPLE *in, COEFF coeff, int len){
if(coeff == ONE){
memcpy(out, in, sizeof(SAMPLE)*len);
}else{
More information about the ffmpeg-cvslog
mailing list