comparison libmpcodecs/vd_libdv.c @ 18771:a1807995e2ab

Move #ifdefs around complete files into the build system.
author diego
date Wed, 21 Jun 2006 14:49:09 +0000
parents 1eadce15446c
children 4faee1254928
comparison
equal deleted inserted replaced
18770:b6225b75d0b0 18771:a1807995e2ab
4 #include <sys/types.h> 4 #include <sys/types.h>
5 #include <unistd.h> 5 #include <unistd.h>
6 #include <math.h> 6 #include <math.h>
7 7
8 #include "config.h" 8 #include "config.h"
9
10 #ifdef HAVE_LIBDV095
11 9
12 #include "img_format.h" 10 #include "img_format.h"
13 11
14 #include <libdv/dv.h> 12 #include <libdv/dv.h>
15 #include <libdv/dv_types.h> 13 #include <libdv/dv_types.h>
81 79
82 dv_decode_full_frame(decoder, data, e_dv_color_yuv, mpi->planes, mpi->stride); 80 dv_decode_full_frame(decoder, data, e_dv_color_yuv, mpi->planes, mpi->stride);
83 81
84 return mpi; 82 return mpi;
85 } 83 }
86 #endif
87