diff pca.h @ 567:bd4052d9050c libavutil

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents daccf2fe1053
children 8c48a1b999a3
line wrap: on
line diff
--- a/pca.h	Tue Aug 19 22:17:13 2008 +0000
+++ b/pca.h	Sun Aug 31 07:39:47 2008 +0000
@@ -24,12 +24,12 @@
  * Principal component analysis
  */
 
-#ifndef FFMPEG_PCA_H
-#define FFMPEG_PCA_H
+#ifndef AVUTIL_PCA_H
+#define AVUTIL_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 */
+#endif /* AVUTIL_PCA_H */