Commit 90f690df authored by michael's avatar michael

Dont mix declarations and statements (by ramiro).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14806 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3f7ee861
......@@ -126,11 +126,11 @@ int ff_pca(PCA *pca, double *eigenvector, double *eigenvalue){
z[i] -= t*covar;
z[j] += t*covar;
#define ROTATE(a,i,j,k,l)\
#define ROTATE(a,i,j,k,l) {\
double g=a[j + i*n];\
double h=a[l + k*n];\
a[j + i*n]=g-s*(h+g*tau);\
a[l + k*n]=h+s*(g-h*tau);
a[l + k*n]=h+s*(g-h*tau); }
for(k=0; k<n; k++) {
if(k!=i && k!=j){
ROTATE(pca->covariance,FFMIN(k,i),FFMAX(k,i),FFMIN(k,j),FFMAX(k,j))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment