diff options
author | ods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-09-17 10:24:26 +0000 |
---|---|---|
committer | ods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-09-17 10:24:26 +0000 |
commit | 62967911f0ac40b10c7f3da707bcad37da106485 (patch) | |
tree | 63c8e1fff2d2f093af045b2753dcfebab8e7c10a | |
parent | 2f07a40d8db00819bce7f7b23218464025fa5e01 (diff) |
conditional declerations are unnecessary
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19869 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpcodecs/vf.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c index 5b08e521fa..818aa07ad4 100644 --- a/libmpcodecs/vf.c +++ b/libmpcodecs/vf.c @@ -25,18 +25,12 @@ extern vf_info_t vf_info_vo; extern vf_info_t vf_info_rectangle; -#ifndef HAVE_NO_POSIX_SELECT extern vf_info_t vf_info_bmovl; -#endif extern vf_info_t vf_info_crop; extern vf_info_t vf_info_expand; -#if defined(USE_LIBPOSTPROC) || defined(USE_LIBPOSTPROC_SO) extern vf_info_t vf_info_pp; -#endif extern vf_info_t vf_info_scale; -#ifdef USE_LIBFAME extern vf_info_t vf_info_fame; -#endif extern vf_info_t vf_info_format; extern vf_info_t vf_info_noformat; extern vf_info_t vf_info_yuy2; |