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 | |
parent | 86b2d47fc0475797d21fcc868fb0f675c9d96ba8 (diff) | |
download | ffmpeg-streaming-245976da2a7f9a4a03dfb6903e9437b7cf2967f4.zip ffmpeg-streaming-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')
-rw-r--r-- | vhook/drawtext.c | 2 | ||||
-rw-r--r-- | vhook/fish.c | 8 | ||||
-rw-r--r-- | vhook/imlib2.c | 4 | ||||
-rw-r--r-- | vhook/null.c | 4 | ||||
-rw-r--r-- | vhook/ppm.c | 8 | ||||
-rw-r--r-- | vhook/watermark.c | 9 |
6 files changed, 17 insertions, 18 deletions
diff --git a/vhook/drawtext.c b/vhook/drawtext.c index d3ca767..8638d60 100644 --- a/vhook/drawtext.c +++ b/vhook/drawtext.c @@ -45,7 +45,7 @@ #define MAXSIZE_TEXT 1024 -#include "framehook.h" +#include "libavformat/framehook.h" #include <stdio.h> #include <stdlib.h> diff --git a/vhook/fish.c b/vhook/fish.c index be23dc6..f0cd008 100644 --- a/vhook/fish.c +++ b/vhook/fish.c @@ -44,10 +44,10 @@ #include <stdio.h> #include <dirent.h> -#include "framehook.h" -#include "dsputil.h" -#include "avformat.h" -#include "swscale.h" +#include "libavformat/avformat.h" +#include "libavformat/framehook.h" +#include "libavcodec/dsputil.h" +#include "libswscale/swscale.h" static int sws_flags = SWS_BICUBIC; diff --git a/vhook/imlib2.c b/vhook/imlib2.c index 7df4c0a..e5b7de8 100644 --- a/vhook/imlib2.c +++ b/vhook/imlib2.c @@ -45,8 +45,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "framehook.h" -#include "swscale.h" +#include "libavformat/framehook.h" +#include "libswscale/swscale.h" #include <stdio.h> #include <stdlib.h> diff --git a/vhook/null.c b/vhook/null.c index c933089..6f31037 100644 --- a/vhook/null.c +++ b/vhook/null.c @@ -20,8 +20,8 @@ */ #include <stdio.h> -#include "framehook.h" -#include "swscale.h" +#include "libavformat/framehook.h" +#include "libswscale/swscale.h" static int sws_flags = SWS_BICUBIC; diff --git a/vhook/ppm.c b/vhook/ppm.c index db76998..6ebfe47 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; diff --git a/vhook/watermark.c b/vhook/watermark.c index a8f7d57..74f5095 100644 --- a/vhook/watermark.c +++ b/vhook/watermark.c @@ -58,12 +58,11 @@ #include <unistd.h> #include <stdarg.h> -#include "common.h" -#include "avformat.h" - -#include "framehook.h" +#include "libavutil/common.h" +#include "libavformat/avformat.h" +#include "libavformat/framehook.h" +#include "libswscale/swscale.h" #include "cmdutils.h" -#include "swscale.h" static int sws_flags = SWS_BICUBIC; |