comparison cfg-common.h @ 11436:6afc2d6f5a08

XviD Api4 support
author iive
date Wed, 12 Nov 2003 00:43:42 +0000
parents 119703388a95
children b293b4eb2c8c
comparison
equal deleted inserted replaced
11435:e35ceb2bf375 11436:6afc2d6f5a08
198 {"noslices", &vd_use_slices, CONF_TYPE_FLAG, 0, 1, 0, NULL}, 198 {"noslices", &vd_use_slices, CONF_TYPE_FLAG, 0, 1, 0, NULL},
199 199
200 #ifdef USE_LIBAVCODEC 200 #ifdef USE_LIBAVCODEC
201 {"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, 201 {"lavdopts", lavc_decode_opts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
202 #endif 202 #endif
203 #ifdef HAVE_XVID 203 #if defined(HAVE_XVID3) || defined(HAVE_XVID4)
204 {"xvidopts", xvid_dec_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, 204 {"xvidopts", xvid_dec_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
205 #endif 205 #endif
206 // ------------------------- subtitles options -------------------- 206 // ------------------------- subtitles options --------------------
207 207
208 #ifdef USE_SUB 208 #ifdef USE_SUB
435 435
436 #ifdef USE_LIBAVCODEC 436 #ifdef USE_LIBAVCODEC
437 extern m_option_t lavc_decode_opts_conf[]; 437 extern m_option_t lavc_decode_opts_conf[];
438 #endif 438 #endif
439 439
440 #ifdef HAVE_XVID 440 #if defined(HAVE_XVID3) || defined(HAVE_XVID4)
441 extern m_option_t xvid_dec_opts[]; 441 extern m_option_t xvid_dec_opts[];
442 #endif 442 #endif
443 443
444 int dvd_parse_chapter_range(m_option_t*, const char*); 444 int dvd_parse_chapter_range(m_option_t*, const char*);
445 445