comparison libmpcodecs/vd_ffmpeg.c @ 17523:f0e7712385dc

Move conditional compilation out of the code and into the build system.
author diego
date Tue, 31 Jan 2006 23:36:12 +0000
parents b56f34ba3f2f
children 7b7b7552fcbb
comparison
equal deleted inserted replaced
17522:2408715522a7 17523:f0e7712385dc
4 #include <time.h> 4 #include <time.h>
5 5
6 #include "config.h" 6 #include "config.h"
7 #include "mp_msg.h" 7 #include "mp_msg.h"
8 #include "help_mp.h" 8 #include "help_mp.h"
9
10 #ifdef USE_LIBAVCODEC
11 9
12 #include "bswap.h" 10 #include "bswap.h"
13 11
14 #include "vd_internal.h" 12 #include "vd_internal.h"
15 13
1119 mpcodecs_draw_slice (sh, source, src->linesize, width, height, 0, y); 1117 mpcodecs_draw_slice (sh, source, src->linesize, width, height, 0, y);
1120 1118
1121 } 1119 }
1122 1120
1123 #endif // HAVE_XVMC 1121 #endif // HAVE_XVMC
1124
1125 #endif