changeset 29493:335da85c454c

Reuse sws_getConstVec() where possible.
author ramiro
date Wed, 19 Aug 2009 01:32:06 +0000
parents 869c68891fde
children 86786d090e11
files libswscale/swscale.c
diffstat 1 files changed, 12 insertions(+), 36 deletions(-) [+]
line wrap: on
line diff
--- a/libswscale/swscale.c	Tue Aug 18 22:25:58 2009 +0000
+++ b/libswscale/swscale.c	Wed Aug 19 01:32:06 2009 +0000
@@ -3309,18 +3309,12 @@
 static SwsVector *sws_getConvVec(SwsVector *a, SwsVector *b)
 {
     int length= a->length + b->length - 1;
-    double *coeff= av_malloc(length*sizeof(double));
     int i, j;
-    SwsVector *vec= av_malloc(sizeof(SwsVector));
-
-    vec->coeff= coeff;
-    vec->length= length;
-
-    for (i=0; i<length; i++) coeff[i]= 0.0;
+    SwsVector *vec= sws_getConstVec(0.0, length);
 
     for (i=0; i<a->length; i++) {
         for (j=0; j<b->length; j++) {
-            coeff[i+j]+= a->coeff[i]*b->coeff[j];
+            vec->coeff[i+j]+= a->coeff[i]*b->coeff[j];
         }
     }
 
@@ -3330,17 +3324,11 @@
 static SwsVector *sws_sumVec(SwsVector *a, SwsVector *b)
 {
     int length= FFMAX(a->length, b->length);
-    double *coeff= av_malloc(length*sizeof(double));
     int i;
-    SwsVector *vec= av_malloc(sizeof(SwsVector));
-
-    vec->coeff= coeff;
-    vec->length= length;
-
-    for (i=0; i<length; i++) coeff[i]= 0.0;
-
-    for (i=0; i<a->length; i++) coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i];
-    for (i=0; i<b->length; i++) coeff[i + (length-1)/2 - (b->length-1)/2]+= b->coeff[i];
+    SwsVector *vec= sws_getConstVec(0.0, length);
+
+    for (i=0; i<a->length; i++) vec->coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i];
+    for (i=0; i<b->length; i++) vec->coeff[i + (length-1)/2 - (b->length-1)/2]+= b->coeff[i];
 
     return vec;
 }
@@ -3348,17 +3336,11 @@
 static SwsVector *sws_diffVec(SwsVector *a, SwsVector *b)
 {
     int length= FFMAX(a->length, b->length);
-    double *coeff= av_malloc(length*sizeof(double));
     int i;
-    SwsVector *vec= av_malloc(sizeof(SwsVector));
-
-    vec->coeff= coeff;
-    vec->length= length;
-
-    for (i=0; i<length; i++) coeff[i]= 0.0;
-
-    for (i=0; i<a->length; i++) coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i];
-    for (i=0; i<b->length; i++) coeff[i + (length-1)/2 - (b->length-1)/2]-= b->coeff[i];
+    SwsVector *vec= sws_getConstVec(0.0, length);
+
+    for (i=0; i<a->length; i++) vec->coeff[i + (length-1)/2 - (a->length-1)/2]+= a->coeff[i];
+    for (i=0; i<b->length; i++) vec->coeff[i + (length-1)/2 - (b->length-1)/2]-= b->coeff[i];
 
     return vec;
 }
@@ -3367,17 +3349,11 @@
 static SwsVector *sws_getShiftedVec(SwsVector *a, int shift)
 {
     int length= a->length + FFABS(shift)*2;
-    double *coeff= av_malloc(length*sizeof(double));
     int i;
-    SwsVector *vec= av_malloc(sizeof(SwsVector));
-
-    vec->coeff= coeff;
-    vec->length= length;
-
-    for (i=0; i<length; i++) coeff[i]= 0.0;
+    SwsVector *vec= sws_getConstVec(0.0, length);
 
     for (i=0; i<a->length; i++) {
-        coeff[i + (length-1)/2 - (a->length-1)/2 - shift]= a->coeff[i];
+        vec->coeff[i + (length-1)/2 - (a->length-1)/2 - shift]= a->coeff[i];
     }
 
     return vec;