comparison libass/ass_mp.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 588ce97b44f2
children d788e177a35e
comparison
equal deleted inserted replaced
27340:33274ce3cce0 27341:e7c989f7a7c9
63 extern char* font_name; 63 extern char* font_name;
64 extern char* sub_font_name; 64 extern char* sub_font_name;
65 extern float text_font_scale_factor; 65 extern float text_font_scale_factor;
66 extern int subtitle_autoscale; 66 extern int subtitle_autoscale;
67 67
68 #ifdef USE_ICONV 68 #ifdef CONFIG_ICONV
69 extern char* sub_cp; 69 extern char* sub_cp;
70 #else 70 #else
71 static char* sub_cp = 0; 71 static char* sub_cp = 0;
72 #endif 72 #endif
73 73