summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-05-09 11:56:36 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-09 11:56:36 +0000
commit245976da2a7f9a4a03dfb6903e9437b7cf2967f4 (patch)
tree707e1f817cc15150570701eecb2f2956b812ee49 /ffmpeg.c
parent86b2d47fc0475797d21fcc868fb0f675c9d96ba8 (diff)
Use full path for #includes from another directory.
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 874418bad6..27374a7fce 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -27,14 +27,14 @@
#include <errno.h>
#include <signal.h>
#include <limits.h>
-#include "avformat.h"
-#include "avdevice.h"
-#include "swscale.h"
-#include "framehook.h"
-#include "opt.h"
-#include "fifo.h"
-#include "avstring.h"
-#include "os_support.h"
+#include "libavformat/avformat.h"
+#include "libavdevice/avdevice.h"
+#include "libswscale/swscale.h"
+#include "libavformat/framehook.h"
+#include "libavcodec/opt.h"
+#include "libavutil/fifo.h"
+#include "libavutil/avstring.h"
+#include "libavformat/os_support.h"
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>