Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-08-17 19:51:20 +0400
committerMichael Niedermayer <michaelni@gmx.at>2008-08-17 19:51:20 +0400
commitab1388e435c72b4f8a0cb508843abc9c838ed95f (patch)
treeeb72a8857b8c573ff929c30bbb775d55202819d1 /libavutil/pca.h
parentf43ad0fe74c1e5a66291bf92ec57e027ac4f212a (diff)
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.h8
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;