comparison libass/ass.c @ 21026:d138463e820b

Collect all includes of mplayer headers in libass in a single file (mputils.h).
author eugeni
date Sun, 19 Nov 2006 00:41:00 +0000
parents 7088929a2cb8
children 6196ba31e97e
comparison
equal deleted inserted replaced
21025:eebe384dfb7c 21026:d138463e820b
28 #include <sys/types.h> 28 #include <sys/types.h>
29 #include <sys/stat.h> 29 #include <sys/stat.h>
30 #include <unistd.h> 30 #include <unistd.h>
31 #include <inttypes.h> 31 #include <inttypes.h>
32 32
33 #ifdef HAVE_ENCA
34 #include "subreader.h" // for guess_buffer_cp
35 #endif
36
37 #ifdef USE_ICONV 33 #ifdef USE_ICONV
38 #include <iconv.h> 34 #include <iconv.h>
39 #endif 35 #endif
40 36
41 #include "mp_msg.h"
42 #include "ass.h" 37 #include "ass.h"
43 #include "ass_utils.h" 38 #include "ass_utils.h"
44 #include "ass_library.h" 39 #include "ass_library.h"
45 #include "libvo/sub.h" // for utf8_get_char 40 #include "mputils.h"
46 41
47 typedef enum {PST_UNKNOWN = 0, PST_INFO, PST_STYLES, PST_EVENTS, PST_FONTS} parser_state_t; 42 typedef enum {PST_UNKNOWN = 0, PST_INFO, PST_STYLES, PST_EVENTS, PST_FONTS} parser_state_t;
48 43
49 struct parser_priv_s { 44 struct parser_priv_s {
50 parser_state_t state; 45 parser_state_t state;