Ubuntu Pastebin

Paste from iMadper at Wed, 25 Mar 2015 12:37:00 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ass % ls
ass.h  ass_types.h
ass % ag ass_library
ass.h
104:int ass_library_version(void);
110:ASS_Library *ass_library_init(void);
116:void ass_library_done(ASS_Library *priv);
127:void ass_set_fonts_dir(ASS_Library *priv, const char *fonts_dir);
134:void ass_set_extract_fonts(ASS_Library *priv, int extract);
145:void ass_set_style_overrides(ASS_Library *priv, char **list);
167:void ass_set_message_cb(ASS_Library *priv, void (*msg_cb)
176:ASS_Renderer *ass_renderer_init(ASS_Library *);
411:ASS_Track *ass_new_track(ASS_Library *);
491:ASS_Track *ass_read_file(ASS_Library *library, char *fname,
502:ASS_Track *ass_read_memory(ASS_Library *library, char *buf,
519:void ass_add_font(ASS_Library *library, char *name, char *data,
523: * \brief Remove all fonts stored in an ass_library object.
526:void ass_clear_fonts(ASS_Library *library);

ass_types.h
35:typedef struct ass_library ASS_Library;
188:    ASS_Library *library;
ass % 
Download as text