summaryrefslogtreecommitdiff
path: root/tools/pktdumper.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-08-20 21:58:05 +0000
committerDiego Biurrun <diego@biurrun.de>2008-08-20 21:58:05 +0000
commit3ef6182556f7f8a4044c1d7da1212989e655e6b2 (patch)
tree77f2ac7ccc2871d7f87fdd602a8c729eb53bac1d /tools/pktdumper.c
parent071083b4a5642c56dbe0b0e957fd84b7549dea5c (diff)
Fix #include path, headers from other directories need to have
the directory name prefixed now. Originally committed as revision 14868 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools/pktdumper.c')
-rw-r--r--tools/pktdumper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pktdumper.c b/tools/pktdumper.c
index 2d5a3b7218..781a3c24fc 100644
--- a/tools/pktdumper.c
+++ b/tools/pktdumper.c
@@ -18,13 +18,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <avformat.h>
#include <limits.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include "libavformat/avformat.h"
#define PKTFILESUFF "_%08"PRId64"_%02d_%010"PRId64"_%06d_%c.bin"