Mercurial > mplayer.hg
comparison libmpcodecs/vd_theora.c @ 18771:a1807995e2ab
Move #ifdefs around complete files into the build system.
author | diego |
---|---|
date | Wed, 21 Jun 2006 14:49:09 +0000 |
parents | 28e19750b448 |
children | cc65a585fdcc |
comparison
equal
deleted
inserted
replaced
18770:b6225b75d0b0 | 18771:a1807995e2ab |
---|---|
4 #include <assert.h> | 4 #include <assert.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 HAVE_OGGTHEORA | |
11 | 9 |
12 #include "vd_internal.h" | 10 #include "vd_internal.h" |
13 | 11 |
14 static vd_info_t info = { | 12 static vd_info_t info = { |
15 "Theora/VP3", | 13 "Theora/VP3", |
177 mpi->planes[2]=yuv.v; | 175 mpi->planes[2]=yuv.v; |
178 mpi->stride[2]=yuv.uv_stride; | 176 mpi->stride[2]=yuv.uv_stride; |
179 | 177 |
180 return mpi; | 178 return mpi; |
181 } | 179 } |
182 | |
183 #endif |