1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
2 // vim:ts=8:sw=8:noet:ai:
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "ass_types.h"
26 /// Libass renderer object. Contents are private.
27 typedef struct ass_renderer_s ass_renderer_t
;
29 /// a linked list of images produced by ass renderer
30 typedef struct ass_image_s
{
31 int w
, h
; // bitmap width/height
32 int stride
; // bitmap stride
33 unsigned char* bitmap
; // 1bpp stride*h alpha buffer
34 uint32_t color
; // RGBA
35 int dst_x
, dst_y
; // bitmap placement inside the video frame
37 struct ass_image_s
* next
; // linked list
41 typedef enum {ASS_HINTING_NONE
= 0,
48 * \brief initialize the library
49 * \return library handle or NULL if failed
51 ass_library_t
* ass_library_init(void);
54 * \brief finalize the library
55 * \param priv library handle
57 void ass_library_done(ass_library_t
*);
60 * \brief set private font directory
61 * It is used for saving embedded fonts and also in font lookup.
63 void ass_set_fonts_dir(ass_library_t
* priv
, const char* fonts_dir
);
65 void ass_set_extract_fonts(ass_library_t
* priv
, int extract
);
67 void ass_set_style_overrides(ass_library_t
* priv
, char** list
);
70 * \brief initialize the renderer
71 * \param priv library handle
72 * \return renderer handle or NULL if failed
74 ass_renderer_t
* ass_renderer_init(ass_library_t
*);
77 * \brief finalize the renderer
78 * \param priv renderer handle
80 void ass_renderer_done(ass_renderer_t
* priv
);
82 void ass_set_frame_size(ass_renderer_t
* priv
, int w
, int h
);
83 void ass_set_margins(ass_renderer_t
* priv
, int t
, int b
, int l
, int r
);
84 void ass_set_use_margins(ass_renderer_t
* priv
, int use
);
85 void ass_set_aspect_ratio(ass_renderer_t
* priv
, double ar
);
86 void ass_set_font_scale(ass_renderer_t
* priv
, double font_scale
);
87 void ass_set_hinting(ass_renderer_t
* priv
, ass_hinting_t ht
);
90 * \brief set font lookup defaults
92 int ass_set_fonts(ass_renderer_t
* priv
, const char* default_font
, const char* default_family
);
95 * \brief render a frame, producing a list of ass_image_t
97 * \param track subtitle track
98 * \param now video timestamp in milliseconds
100 ass_image_t
* ass_render_frame(ass_renderer_t
*priv
, ass_track_t
* track
, long long now
, int* detect_change
);
103 // The following functions operate on track objects and do not need an ass_renderer //
106 * \brief allocate a new empty track object
107 * \return pointer to empty track
109 ass_track_t
* ass_new_track(ass_library_t
*);
112 * \brief deallocate track and all its child objects (styles and events)
113 * \param track track to deallocate
115 void ass_free_track(ass_track_t
* track
);
118 * \brief allocate new style
120 * \return newly allocated style id
122 int ass_alloc_style(ass_track_t
* track
);
125 * \brief allocate new event
127 * \return newly allocated event id
129 int ass_alloc_event(ass_track_t
* track
);
132 * \brief delete a style
134 * \param sid style id
135 * Deallocates style data. Does not modify track->n_styles.
137 void ass_free_style(ass_track_t
* track
, int sid
);
140 * \brief delete an event
142 * \param eid event id
143 * Deallocates event data. Does not modify track->n_events.
145 void ass_free_event(ass_track_t
* track
, int eid
);
148 * \brief Process Codec Private section of subtitle stream
149 * \param track target track
150 * \param data string to parse
151 * \param size length of data
153 void ass_process_codec_private(ass_track_t
* track
, char *data
, int size
);
156 * \brief Process a chunk of subtitle stream data. In matroska, this containes exactly 1 event (or a commentary)
158 * \param data string to parse
159 * \param size length of data
160 * \param timecode starting time of the event (milliseconds)
161 * \param duration duration of the event (milliseconds)
163 void ass_process_chunk(ass_track_t
* track
, char *data
, int size
, long long timecode
, long long duration
);
165 char* read_file_recode(char* fname
, char* codepage
, int* size
);
168 * \brief Read subtitles from file.
169 * \param fname file name
170 * \return newly allocated track
172 ass_track_t
* ass_read_file(ass_library_t
* library
, char* fname
, char* codepage
);
175 * \brief Read subtitles from memory.
176 * \param library libass library object
177 * \param buf pointer to subtitles text
178 * \param bufsize size of buffer
179 * \param codepage recode buffer contents from given codepage
180 * \return newly allocated track
182 ass_track_t
* ass_read_memory(ass_library_t
* library
, char* buf
, size_t bufsize
, char* codepage
);
184 * \brief read styles from file into already initialized track
185 * \return 0 on success
187 int ass_read_styles(ass_track_t
* track
, char* fname
, char* codepage
);
190 * \brief Add a memory font.
191 * \param name attachment name
192 * \param data binary font data
193 * \param data_size data size
195 void ass_add_font(ass_library_t
* library
, char* name
, char* data
, int data_size
);
198 * \brief Calculates timeshift from now to the start of some other subtitle event, depending on movement parameter
199 * \param track subtitle track
200 * \param now current time, ms
201 * \param movement how many events to skip from the one currently displayed
202 * +2 means "the one after the next", -1 means "previous"
203 * \return timeshift, ms
205 long long ass_step_sub(ass_track_t
* track
, long long now
, int movement
);