comparison libmpcodecs/ve.c @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents 133c98f1c5a8
children 40057010b1fa
comparison
equal deleted inserted replaced
27340:33274ce3cce0 27341:e7c989f7a7c9
21 /* Please do not add any new encoders here. If you want to implement a new 21 /* Please do not add any new encoders here. If you want to implement a new
22 * encoder, add it to libavcodec, except for wrappers around external 22 * encoder, add it to libavcodec, except for wrappers around external
23 * libraries and encoders requiring binary support. */ 23 * libraries and encoders requiring binary support. */
24 24
25 static vf_info_t* encoder_list[]={ 25 static vf_info_t* encoder_list[]={
26 #ifdef USE_LIBAVCODEC 26 #ifdef CONFIG_LIBAVCODEC
27 &ve_info_lavc, 27 &ve_info_lavc,
28 #endif 28 #endif
29 #ifdef USE_WIN32DLL 29 #ifdef CONFIG_WIN32DLL
30 &ve_info_vfw, 30 &ve_info_vfw,
31 #ifdef USE_QTX_CODECS_WIN32 31 #ifdef CONFIG_QTX_CODECS_WIN32
32 &ve_info_qtvideo, 32 &ve_info_qtvideo,
33 #endif 33 #endif
34 #endif 34 #endif
35 #ifdef HAVE_LIBDV095 35 #ifdef HAVE_LIBDV095
36 &ve_info_libdv, 36 &ve_info_libdv,
37 #endif 37 #endif
38 &ve_info_raw, 38 &ve_info_raw,
39 #ifdef HAVE_XVID4 39 #ifdef HAVE_XVID4
40 &ve_info_xvid, 40 &ve_info_xvid,
41 #endif 41 #endif
42 #ifdef USE_LIBLZO 42 #ifdef CONFIG_LIBLZO
43 &ve_info_nuv, 43 &ve_info_nuv,
44 #endif 44 #endif
45 #ifdef HAVE_X264 45 #ifdef HAVE_X264
46 &ve_info_x264, 46 &ve_info_x264,
47 #endif 47 #endif