diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-08-17 15:32:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-08-17 15:32:13 +0000 |
commit | a50bd69d9d1295588e09956e41c1d64805b1b367 (patch) | |
tree | 0ac8b54fce390bf8323318bda916f655fa1c7ee3 /libavutil | |
parent | 7a0d00d49e587767e158f3af8f3d0d31d26faff7 (diff) | |
download | ffmpeg-a50bd69d9d1295588e09956e41c1d64805b1b367.tar.gz |
fix includes
Originally committed as revision 14803 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pca.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/pca.c b/libavutil/pca.c index 7be4404749..5d22f4d230 100644 --- a/libavutil/pca.c +++ b/libavutil/pca.c @@ -23,8 +23,7 @@ * Principal component analysis */ -#include <math.h> -#include "avcodec.h" +#include "common.h" #include "pca.h" int ff_pca_init(PCA *pca, int n){ |