1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

Unify include path handling by using -I.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17018 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-11-18 16:16:33 +00:00
parent 9b8d5d8412
commit 0520dff832
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
// simple tool to fix chunk sizes in a RIFF AVI file
// it doesn't check/fix index, use mencoder -forceidx -oac copy -ovc copy to fix index!
#include "../config.h"
#include "config.h"
#ifdef MP_DEBUG
#define mp_debug(...) printf(__VA_ARGS__)
#else

View File

@ -17,14 +17,14 @@
#include <sys/time.h>
#include <inttypes.h>
#include "../libvo/fastmemcpy.h"
#include "libvo/fastmemcpy.h"
//#define ARR_SIZE 100000
#define ARR_SIZE (1024*768*2)
#ifdef HAVE_MGA
#include "../drivers/mga_vid.h"
#include "drivers/mga_vid.h"
static int mga_next_frame=0;

View File

@ -396,7 +396,7 @@ int mp_input_check_interrupt(int time){
}
// for libmpdvdkit2:
#include "../get_path.c"
#include "get_path.c"
int verbose=0;