diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-08-17 15:51:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-08-17 15:51:20 +0000 |
commit | ab1388e435c72b4f8a0cb508843abc9c838ed95f (patch) | |
tree | eb72a8857b8c573ff929c30bbb775d55202819d1 /libavutil/pca.h | |
parent | f43ad0fe74c1e5a66291bf92ec57e027ac4f212a (diff) | |
download | ffmpeg-ab1388e435c72b4f8a0cb508843abc9c838ed95f.tar.gz |
Move context struct to c file.
Originally committed as revision 14809 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/pca.h')
-rw-r--r-- | libavutil/pca.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavutil/pca.h b/libavutil/pca.h index c071c1a72f..57b03a9453 100644 --- a/libavutil/pca.h +++ b/libavutil/pca.h @@ -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; |