annotate libass/ass_mp.c @ 20702:34bb6f334242

Cosmetics: indentation fix.
author eugeni
date Sun, 05 Nov 2006 18:21:39 +0000
parents e8885ec63928
children 6ae01628975f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20008
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
2 // vim:ts=8:sw=8:noet:ai:
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
3 /*
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
5
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
6 This program is free software; you can redistribute it and/or modify
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
7 it under the terms of the GNU General Public License as published by
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
8 the Free Software Foundation; either version 2 of the License, or
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
9 (at your option) any later version.
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
10
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
11 This program is distributed in the hope that it will be useful,
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
14 GNU General Public License for more details.
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
15
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
16 You should have received a copy of the GNU General Public License
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
17 along with this program; if not, write to the Free Software
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
19 */
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19654
diff changeset
20
19405
0797e1b4a4be Replace stdint.h with inttypes.h.
eugeni
parents: 19401
diff changeset
21 #include <inttypes.h>
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
22 #include <string.h>
19484
6eb79b2384f8 use of malloc without prototype.. very bad on 64bit archs
rfelker
parents: 19405
diff changeset
23 #include <stdlib.h>
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
24
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
25 #include "mp_msg.h"
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
26
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
27 #include "ass.h"
19646
e6cdf80eb941 ass-color and ass-border-color options.
eugeni
parents: 19643
diff changeset
28 #include "ass_utils.h"
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
29 #include "ass_mp.h"
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
30 #include "ass_library.h"
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
31
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
32 // libass-related command line options
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
33 ass_library_t* ass_library;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
34 int ass_enabled = 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
35 float ass_font_scale = 1.;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
36 float ass_line_spacing = 0.;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
37 int ass_top_margin = 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
38 int ass_bottom_margin = 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
39 int extract_embedded_fonts = 0;
19495
31ac2e1a5695 New cmdline option: -ass-force-style.
eugeni
parents: 19484
diff changeset
40 char **ass_force_style_list = NULL;
19563
661d6c8a4adb Add -(no)ass-use-margins option.
eugeni
parents: 19495
diff changeset
41 int ass_use_margins = 0;
19646
e6cdf80eb941 ass-color and ass-border-color options.
eugeni
parents: 19643
diff changeset
42 char* ass_color = NULL;
e6cdf80eb941 ass-color and ass-border-color options.
eugeni
parents: 19643
diff changeset
43 char* ass_border_color = NULL;
19652
2c016957360a Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents: 19646
diff changeset
44 char* ass_styles_file = NULL;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
45
20469
54babf7ca302 If HAVE_FONTCONFIG is not defined, font_fontconfig might be declared both
reimar
parents: 20446
diff changeset
46 #ifdef HAVE_FONTCONFIG
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
47 extern int font_fontconfig;
20469
54babf7ca302 If HAVE_FONTCONFIG is not defined, font_fontconfig might be declared both
reimar
parents: 20446
diff changeset
48 #else
54babf7ca302 If HAVE_FONTCONFIG is not defined, font_fontconfig might be declared both
reimar
parents: 20446
diff changeset
49 static int font_fontconfig = 0;
54babf7ca302 If HAVE_FONTCONFIG is not defined, font_fontconfig might be declared both
reimar
parents: 20446
diff changeset
50 #endif
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
51 extern char* font_name;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
52 extern float text_font_scale_factor;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
53 extern int subtitle_autoscale;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
54
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
55 #ifdef USE_ICONV
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
56 extern char* sub_cp;
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
57 #else
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
58 static char* sub_cp = 0;
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
59 #endif
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
60
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
61 extern double ass_internal_font_size_coeff;
19584
586e7d259d05 Apply -ass-force-style also to tracks generated from subdata.
eugeni
parents: 19563
diff changeset
62 extern void process_force_style(ass_track_t* track);
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
63
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
64 ass_track_t* ass_default_track(ass_library_t* library) {
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
65 ass_track_t* track = ass_new_track(library);
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
66
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
67 track->track_type = TRACK_TYPE_ASS;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
68 track->Timer = 100.;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
69 track->PlayResY = 288;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
70 track->WrapStyle = 0;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
71
19652
2c016957360a Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents: 19646
diff changeset
72 if (ass_styles_file)
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
73 ass_read_styles(track, ass_styles_file, sub_cp);
19652
2c016957360a Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents: 19646
diff changeset
74
2c016957360a Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents: 19646
diff changeset
75 if (track->n_styles == 0) {
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
76 ass_style_t* style;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
77 int sid;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
78 double fs;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
79 uint32_t c1, c2;
19652
2c016957360a Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents: 19646
diff changeset
80
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
81 sid = ass_alloc_style(track);
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
82 style = track->styles + sid;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
83 style->Name = strdup("Default");
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
84 style->FontName = (font_fontconfig && font_name) ? strdup(font_name) : strdup("Sans");
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
85
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
86 fs = track->PlayResY * text_font_scale_factor / 100. / ass_internal_font_size_coeff;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
87 // approximate autoscale coefficients
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
88 if (subtitle_autoscale == 2)
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
89 fs *= 1.3;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
90 else if (subtitle_autoscale == 3)
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
91 fs *= 1.4;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
92 style->FontSize = fs;
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
93
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
94 if (ass_color) c1 = strtoll(ass_color, NULL, 16);
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
95 else c1 = 0xFFFF0000;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
96 if (ass_border_color) c2 = strtoll(ass_border_color, NULL, 16);
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
97 else c2 = 0x00000000;
19646
e6cdf80eb941 ass-color and ass-border-color options.
eugeni
parents: 19643
diff changeset
98
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
99 style->PrimaryColour = c1;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
100 style->SecondaryColour = c1;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
101 style->OutlineColour = c2;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
102 style->BackColour = 0x00000000;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
103 style->BorderStyle = 1;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
104 style->Alignment = 2;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
105 style->Outline = 2;
20138
f753fbd5ae66 Reduce margins for plaintext subtitles.
eugeni
parents: 20008
diff changeset
106 style->MarginL = 10;
f753fbd5ae66 Reduce margins for plaintext subtitles.
eugeni
parents: 20008
diff changeset
107 style->MarginR = 10;
f753fbd5ae66 Reduce margins for plaintext subtitles.
eugeni
parents: 20008
diff changeset
108 style->MarginV = 5;
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
109 style->ScaleX = 1.;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
110 style->ScaleY = 1.;
19652
2c016957360a Add -ass-styles option. It allows to load styles from a file and use them
eugeni
parents: 19646
diff changeset
111 }
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
112
19654
ae983f0a1cac Apply -ass-force-style also to matroska plaintext subs.
eugeni
parents: 19653
diff changeset
113 process_force_style(track);
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
114 return track;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
115 }
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
116
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
117 static int check_duplicate_plaintext_event(ass_track_t* track)
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
118 {
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
119 int i;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
120 ass_event_t* evt = track->events + track->n_events - 1;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
121
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
122 for (i = 0; i<track->n_events - 1; ++i) // ignoring last event, it is the one we are comparing with
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
123 if (track->events[i].Start == evt->Start &&
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
124 track->events[i].Duration == evt->Duration &&
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
125 strcmp(track->events[i].Text, evt->Text) == 0)
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
126 return 1;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
127 return 0;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
128 }
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
129
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
130 /**
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
131 * \brief Convert subtitle to ass_event_t for the given track
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
132 * \param ass_track_t track
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
133 * \param sub subtitle to convert
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
134 * \return event id
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
135 * note: assumes that subtitle is _not_ fps-based; caller must manually correct
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
136 * Start and Duration in other case.
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
137 **/
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
138 int ass_process_subtitle(ass_track_t* track, subtitle* sub)
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
139 {
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
140 int eid;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
141 ass_event_t* event;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
142 int len = 0, j;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
143 char* p;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
144 char* end;
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
145
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
146 eid = ass_alloc_event(track);
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
147 event = track->events + eid;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
148
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
149 event->Start = sub->start * 10;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
150 event->Duration = (sub->end - sub->start) * 10;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
151 event->Style = 0;
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
152
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
153 for (j = 0; j < sub->lines; ++j)
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
154 len += sub->text[j] ? strlen(sub->text[j]) : 0;
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
155
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
156 len += 2 * sub->lines; // '\N', including the one after the last line
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
157 len += 6; // {\anX}
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
158 len += 1; // '\0'
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
159
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
160 event->Text = malloc(len);
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
161 end = event->Text + len;
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
162 p = event->Text;
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
163
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
164 if (sub->alignment)
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
165 p += snprintf(p, end - p, "{\\an%d}", sub->alignment);
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
166
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
167 for (j = 0; j < sub->lines; ++j)
20495
27c1fa3a228e Add \N at the end of each subtitle line when converting from subdata.
eugeni
parents: 20477
diff changeset
168 p += snprintf(p, end - p, "%s\\N", sub->text[j]);
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
169
20495
27c1fa3a228e Add \N at the end of each subtitle line when converting from subdata.
eugeni
parents: 20477
diff changeset
170 p-=2; // remove last ' '
19653
c03c705573c1 Cosmetics: restore indentation after recent changes.
eugeni
parents: 19652
diff changeset
171 *p = 0;
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
172
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
173 if (check_duplicate_plaintext_event(track)) {
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
174 ass_free_event(track, eid);
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
175 track->n_events--;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
176 return -1;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
177 }
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
178
20629
e8885ec63928 Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents: 20502
diff changeset
179 mp_msg(MSGT_ASS, MSGL_V, "plaintext event at %" PRId64 ", +%" PRId64 ": %s \n",
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
180 (int64_t)event->Start, (int64_t)event->Duration, event->Text);
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
181
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
182 return eid;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
183 }
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
184
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
185
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
186 /**
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
187 * \brief Convert subdata to ass_track
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
188 * \param subdata subtitles struct from subreader
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
189 * \param fps video framerate
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
190 * \return newly allocated ass_track, filled with subtitles from subdata
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
191 */
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
192 ass_track_t* ass_read_subdata(ass_library_t* library, sub_data* subdata, double fps) {
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
193 ass_track_t* track;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
194 int i;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
195
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
196 track = ass_default_track(library);
19643
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
197 track->name = subdata->filename ? strdup(subdata->filename) : 0;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
198
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
199 for (i = 0; i < subdata->sub_num; ++i) {
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
200 int eid = ass_process_subtitle(track, subdata->subtitles + i);
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
201 if (eid < 0)
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
202 continue;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
203 if (!subdata->sub_uses_time) {
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
204 track->events[eid].Start *= 100. / fps;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
205 track->events[eid].Duration *= 100. / fps;
f48d49b400cf Add support for rendering matroska plaintext subtitles with libass.
eugeni
parents: 19592
diff changeset
206 }
19401
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
207 }
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
208 return track;
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
209 }
c0c3a2f8bb32 Add subdata to ass_track conversion for external subtitles.
eugeni
parents: 18937
diff changeset
210
20446
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
211 char *get_path(char *);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
212
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
213 void ass_configure(ass_renderer_t* priv, int w, int h) {
20446
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
214 char *dir, *path, *family;
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
215 ass_set_frame_size(priv, w, h);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
216 ass_set_margins(priv, ass_top_margin, ass_bottom_margin, 0, 0);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
217 ass_set_use_margins(priv, ass_use_margins);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
218 ass_set_font_scale(priv, ass_font_scale);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
219
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
220 dir = get_path("fonts");
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
221 if (!font_fontconfig && font_name) path = strdup(font_name);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
222 else path = get_path("subfont.ttf");
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
223 if (font_fontconfig && font_name) family = strdup(font_name);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
224 else family = 0;
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
225
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20469
diff changeset
226 ass_set_fonts(priv, path, family);
20446
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
227
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
228 free(dir);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
229 free(path);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
230 free(family);
e8adc3778348 Split ass_configure() into several smaller functions.
eugeni
parents: 20138
diff changeset
231 }
20502
81a92ae66d78 Move ass_library initialization code to ass_mp.c.
eugeni
parents: 20496
diff changeset
232
81a92ae66d78 Move ass_library initialization code to ass_mp.c.
eugeni
parents: 20496
diff changeset
233 ass_library_t* ass_init() {
20702
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
234 ass_library_t* priv;
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
235 char* path = get_path("fonts");
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
236 priv = ass_library_init();
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
237 ass_set_fonts_dir(priv, path);
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
238 ass_set_extract_fonts(priv, extract_embedded_fonts);
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
239 ass_set_style_overrides(priv, ass_force_style_list);
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
240 free(path);
34bb6f334242 Cosmetics: indentation fix.
eugeni
parents: 20629
diff changeset
241 return priv;
20502
81a92ae66d78 Move ass_library initialization code to ass_mp.c.
eugeni
parents: 20496
diff changeset
242 }