annotate libass/ass_mp.h @ 19418:02b91a15f69e

Update new DarwinPorts URL (as opendarwin.org is going bye-bye and darwinports are gonna be hosted somewhere else). DarwinPorts will eventually get s/DarwinPorts/MacPorts/ but since they haven't done so in their website, we should only do it sometime later
author gpoirier
date Thu, 17 Aug 2006 15:48:21 +0000
parents c0c3a2f8bb32
children 31ac2e1a5695
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
1 #ifndef __ASS_OPTIONS_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
2 #define __ASS_OPTIONS_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
3
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
4 #include "subreader.h"
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
5
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
6 extern int ass_enabled;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
7 extern float ass_font_scale;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
8 extern float ass_line_spacing;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
9 extern int ass_top_margin;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
10 extern int ass_bottom_margin;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
11 extern int extract_embedded_fonts;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
12
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
13 ass_track_t* ass_read_subdata(sub_data* subdata, double fps);
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
14
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
15 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
16