diff pca.h @ 558:9889c1cbf9e1 libavutil

Add multiple inclusion guards for consistency and to avoid them being forgotten in case they ever become neccessary.
author michael
date Sun, 17 Aug 2008 15:53:12 +0000
parents 9f3f45596ecf
children daccf2fe1053
line wrap: on
line diff
--- a/pca.h	Sun Aug 17 15:51:20 2008 +0000
+++ b/pca.h	Sun Aug 17 15:53:12 2008 +0000
@@ -23,7 +23,12 @@
  * Principal component analysis
  */
 
+#ifndef FFMPEG_PCA_H
+#define FFMPEG_PCA_H
+
 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);
+
+#endif /* FFMPEG_PCA_H */