Move context struct to c file.

Originally committed as revision 14809 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-08-17 15:51:20 +00:00
parent f43ad0fe74
commit ab1388e435
2 changed files with 7 additions and 8 deletions

View File

@ -26,6 +26,13 @@
#include "common.h"
#include "pca.h"
typedef struct PCA{
int count;
int n;
double *covariance;
double *mean;
}PCA;
PCA *ff_pca_init(int n){
PCA *pca;
if(n<=0)

View File

@ -27,11 +27,3 @@ struct PCA *ff_pca_init(int n);
void ff_pca_free(struct PCA *pca);
void ff_pca_add(struct PCA *pca, double *v);
int ff_pca(struct PCA *pca, double *eigenvector, double *eigenvalue);
typedef struct PCA{
int count;
int n;
double *covariance;
double *mean;
}PCA;