diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 11:56:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 11:56:36 +0000 |
commit | 245976da2a7f9a4a03dfb6903e9437b7cf2967f4 (patch) | |
tree | 707e1f817cc15150570701eecb2f2956b812ee49 /vhook/ppm.c | |
parent | 86b2d47fc0475797d21fcc868fb0f675c9d96ba8 (diff) | |
download | ffmpeg-245976da2a7f9a4a03dfb6903e9437b7cf2967f4.tar.gz |
Use full path for #includes from another directory.
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/ppm.c')
-rw-r--r-- | vhook/ppm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vhook/ppm.c b/vhook/ppm.c index db76998b5a..6ebfe47524 100644 --- a/vhook/ppm.c +++ b/vhook/ppm.c @@ -25,10 +25,10 @@ #include <sys/types.h> #include <sys/wait.h> #include <ctype.h> -#include "framehook.h" -#include "avformat.h" -#include "swscale.h" -#include "avstring.h" +#include "libavutil/avstring.h" +#include "libavformat/framehook.h" +#include "libavformat/avformat.h" +#include "libswscale/swscale.h" static int sws_flags = SWS_BICUBIC; |