]> git.sesse.net Git - vlc/blob - modules/codec/subsdec.c
2d7a8b52f5723ea33a3b41fec14eea6832f0e080
[vlc] / modules / codec / subsdec.c
1 /*****************************************************************************
2  * subsdec.c : text subtitles decoder
3  *****************************************************************************
4  * Copyright (C) 2000-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Derk-Jan Hartman <hartman at videolan dot org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <vlc/vlc.h>
30 #include <vlc/vout.h>
31 #include <vlc/decoder.h>
32
33 #include "vlc_osd.h"
34 #include "vlc_filter.h"
35 #include "charset.h"
36
37 typedef struct
38 {
39     char *          psz_stylename; /* The name of the style, no comma's allowed */
40     text_style_t    font_style;
41     int             i_align;
42     int             i_margin_h;
43     int             i_margin_v;
44 }  ssa_style_t;
45
46 /*****************************************************************************
47  * decoder_sys_t : decoder descriptor
48  *****************************************************************************/
49 struct decoder_sys_t
50 {
51     vlc_bool_t          b_ass;                           /* The subs are ASS */
52     int                 i_original_height;
53     int                 i_original_width;
54     int                 i_align;          /* Subtitles alignment on the vout */
55     vlc_iconv_t         iconv_handle;            /* handle to iconv instance */
56     vlc_bool_t          b_autodetect_utf8;
57
58     ssa_style_t         **pp_ssa_styles;
59     int                 i_ssa_styles;
60 };
61
62 /*****************************************************************************
63  * Local prototypes
64  *****************************************************************************/
65 static int  OpenDecoder   ( vlc_object_t * );
66 static void CloseDecoder  ( vlc_object_t * );
67
68 static subpicture_t *DecodeBlock   ( decoder_t *, block_t ** );
69 static subpicture_t *ParseText     ( decoder_t *, block_t * );
70 static void         ParseSSAHeader ( decoder_t * );
71 static void         ParseSSAString ( decoder_t *, char *, subpicture_t * );
72 static void         ParseColor     ( decoder_t *, char *, int *, int * );
73 static void         StripTags      ( char * );
74
75 #define DEFAULT_NAME "Default"
76 #define MAX_LINE 8192
77
78 /*****************************************************************************
79  * Module descriptor.
80  *****************************************************************************/
81 static char *ppsz_encodings[] = { DEFAULT_NAME, "ASCII", "UTF-8", "",
82     "ISO-8859-1", "CP1252", "MacRoman", "MacIceland","ISO-8859-15", "",
83     "ISO-8859-2", "CP1250", "MacCentralEurope", "MacCroatian", "MacRomania", "",
84     "ISO-8859-5", "CP1251", "MacCyrillic", "MacUkraine", "KOI8-R", "KOI8-U", "KOI8-RU", "",
85     "ISO-8859-6", "CP1256", "MacArabic", "",
86     "ISO-8859-7", "CP1253", "MacGreek", "",
87     "ISO-8859-8", "CP1255", "MacHebrew", "",
88     "ISO-8859-9", "CP1254", "MacTurkish", "",
89     "ISO-8859-13", "CP1257", "",
90     "ISO-2022-JP", "ISO-2022-JP-1", "ISO-2022-JP-2", "EUC-JP", "SHIFT_JIS", "",
91     "ISO-2022-CN", "ISO-2022-CN-EXT", "EUC-CN", "EUC-TW", "BIG5", "BIG5-HKSCS", "",
92     "ISO-2022-KR", "EUC-KR", "",
93     "MacThai", "KOI8-T", "",
94     "ISO-8859-3", "ISO-8859-4", "ISO-8859-10", "ISO-8859-14", "ISO-8859-16", "",
95     "CP850", "CP862", "CP866", "CP874", "CP932", "CP949", "CP950", "CP1133", "CP1258", "",
96     "Macintosh", "",
97     "UTF-7", "UTF-16", "UTF-16BE", "UTF-16LE", "UTF-32", "UTF-32BE", "UTF-32LE",
98     "C99", "JAVA", "UCS-2", "UCS-2BE", "UCS-2LE", "UCS-4", "UCS-4BE", "UCS-4LE", "",
99     "HZ", "GBK", "GB18030", "JOHAB", "ARMSCII-8",
100     "Georgian-Academy", "Georgian-PS", "TIS-620", "MuleLao-1", "VISCII", "TCVN",
101     "HPROMAN8", "NEXTSTEP" };
102 /*
103 SSA supports charset selection.
104 The following known charsets are used:
105
106 0 = Ansi - Western European
107 1 = default
108 2 = symbol
109 3 = invalid
110 77 = Mac
111 128 = Japanese (Shift JIS)
112 129 = Hangul
113 130 = Johab
114 134 = GB2312 Simplified Chinese
115 136 = Big5 Traditional Chinese
116 161 = Greek
117 162 = Turkish
118 163 = Vietnamese
119 177 = Hebrew
120 178 = Arabic
121 186 = Baltic
122 204 = Russian (Cyrillic)
123 222 = Thai
124 238 = Eastern European
125 254 = PC 437
126 */
127
128 static int  pi_justification[] = { 0, 1, 2 };
129 static char *ppsz_justification_text[] = {N_("Center"),N_("Left"),N_("Right")};
130
131 #define ENCODING_TEXT N_("Subtitles text encoding")
132 #define ENCODING_LONGTEXT N_("Set the encoding used in text subtitles")
133 #define ALIGN_TEXT N_("Subtitles justification")
134 #define ALIGN_LONGTEXT N_("Set the justification of subtitles")
135 #define AUTODETECT_UTF8_TEXT N_("UTF-8 subtitles autodetection")
136 #define AUTODETECT_UTF8_LONGTEXT N_("This enables automatic detection of " \
137             "UTF-8 encoding within subtitles files.")
138 #define FORMAT_TEXT N_("Formatted Subtitles")
139 #define FORMAT_LONGTEXT N_("Some subtitle formats allow for text formatting. " \
140  "VLC partly implements this, but you can choose to disable all formatting.")
141
142
143 vlc_module_begin();
144     set_shortname( _("Subtitles"));
145     set_description( _("Text subtitles decoder") );
146     set_capability( "decoder", 50 );
147     set_callbacks( OpenDecoder, CloseDecoder );
148     set_category( CAT_INPUT );
149     set_subcategory( SUBCAT_INPUT_SCODEC );
150
151     add_integer( "subsdec-align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT,
152                  VLC_FALSE );
153         change_integer_list( pi_justification, ppsz_justification_text, 0 );
154     add_string( "subsdec-encoding", DEFAULT_NAME, NULL,
155                 ENCODING_TEXT, ENCODING_LONGTEXT, VLC_FALSE );
156         change_string_list( ppsz_encodings, 0, 0 );
157     add_bool( "subsdec-autodetect-utf8", VLC_TRUE, NULL,
158               AUTODETECT_UTF8_TEXT, AUTODETECT_UTF8_LONGTEXT, VLC_FALSE );
159     add_bool( "subsdec-formatted", VLC_TRUE, NULL, FORMAT_TEXT, FORMAT_LONGTEXT,
160                  VLC_FALSE );
161 vlc_module_end();
162
163 /*****************************************************************************
164  * OpenDecoder: probe the decoder and return score
165  *****************************************************************************
166  * Tries to launch a decoder and return score so that the interface is able
167  * to chose.
168  *****************************************************************************/
169 static int OpenDecoder( vlc_object_t *p_this )
170 {
171     decoder_t     *p_dec = (decoder_t*)p_this;
172     decoder_sys_t *p_sys;
173     vlc_value_t    val;
174
175     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','u','b','t') &&
176         p_dec->fmt_in.i_codec != VLC_FOURCC('s','s','a',' ') )
177     {
178         return VLC_EGENERIC;
179     }
180
181     p_dec->pf_decode_sub = DecodeBlock;
182
183     /* Allocate the memory needed to store the decoder's structure */
184     if( ( p_dec->p_sys = p_sys =
185           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
186     {
187         msg_Err( p_dec, "out of memory" );
188         return VLC_ENOMEM;
189     }
190
191     /* init of p_sys */
192     p_sys->i_align = 0;
193     p_sys->iconv_handle = (vlc_iconv_t)-1;
194     p_sys->b_autodetect_utf8 = VLC_FALSE;
195     p_sys->b_ass = VLC_FALSE;
196     p_sys->i_original_height = -1;
197     p_sys->i_original_width = -1;
198     p_sys->pp_ssa_styles = NULL;
199     p_sys->i_ssa_styles = 0;
200
201     if( p_dec->fmt_in.subs.psz_encoding && *p_dec->fmt_in.subs.psz_encoding )
202     {
203         msg_Dbg( p_dec, "using demux suggested character encoding: %s",
204                  p_dec->fmt_in.subs.psz_encoding );
205         if( strcmp( p_dec->fmt_in.subs.psz_encoding, "UTF-8" ) )
206             p_sys->iconv_handle = vlc_iconv_open( "UTF-8", p_dec->fmt_in.subs.psz_encoding );
207     }
208     else
209     {
210         var_Create( p_dec, "subsdec-encoding",
211                     VLC_VAR_STRING | VLC_VAR_DOINHERIT );
212         var_Get( p_dec, "subsdec-encoding", &val );
213         if( !strcmp( val.psz_string, DEFAULT_NAME ) )
214         {
215             const char *psz_charset = GetFallbackEncoding();
216
217             p_sys->b_autodetect_utf8 = var_CreateGetBool( p_dec,
218                     "subsdec-autodetect-utf8" );
219
220             p_sys->iconv_handle = vlc_iconv_open( "UTF-8", psz_charset );
221             msg_Dbg( p_dec, "using fallback character encoding: %s", psz_charset );
222         }
223         else if( !strcmp( val.psz_string, "UTF-8" ) )
224         {
225             msg_Dbg( p_dec, "using enforced character encoding: UTF-8" );
226         }
227         else if( val.psz_string )
228         {
229             msg_Dbg( p_dec, "using enforced character encoding: %s", val.psz_string );
230             p_sys->iconv_handle = vlc_iconv_open( "UTF-8", val.psz_string );
231             if( p_sys->iconv_handle == (vlc_iconv_t)-1 )
232             {
233                 msg_Warn( p_dec, "unable to do requested conversion" );
234             }
235         }
236         if( val.psz_string ) free( val.psz_string );
237     }
238
239     var_Create( p_dec, "subsdec-align", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
240     var_Get( p_dec, "subsdec-align", &val );
241     p_sys->i_align = val.i_int;
242
243     if( p_dec->fmt_in.i_codec == VLC_FOURCC('s','s','a',' ') && var_CreateGetBool( p_dec, "subsdec-formatted" ) )
244     {
245         if( p_dec->fmt_in.i_extra > 0 )
246             ParseSSAHeader( p_dec );
247     }
248
249     return VLC_SUCCESS;
250 }
251
252 /****************************************************************************
253  * DecodeBlock: the whole thing
254  ****************************************************************************
255  * This function must be fed with complete subtitles units.
256  ****************************************************************************/
257 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
258 {
259     subpicture_t *p_spu = NULL;
260
261     if( !pp_block || *pp_block == NULL ) return NULL;
262
263     p_spu = ParseText( p_dec, *pp_block );
264
265     block_Release( *pp_block );
266     *pp_block = NULL;
267
268     return p_spu;
269 }
270
271 /*****************************************************************************
272  * CloseDecoder: clean up the decoder
273  *****************************************************************************/
274 static void CloseDecoder( vlc_object_t *p_this )
275 {
276     decoder_t *p_dec = (decoder_t *)p_this;
277     decoder_sys_t *p_sys = p_dec->p_sys;
278
279     if( p_sys->iconv_handle != (vlc_iconv_t)-1 )
280     {
281         vlc_iconv_close( p_sys->iconv_handle );
282     }
283
284     if( p_sys->pp_ssa_styles )
285     {
286         int i;
287         for( i = 0; i < p_sys->i_ssa_styles; i++ )
288         {
289             if( p_sys->pp_ssa_styles[i]->psz_stylename ) free( p_sys->pp_ssa_styles[i]->psz_stylename );
290             p_sys->pp_ssa_styles[i]->psz_stylename = NULL;
291             if( p_sys->pp_ssa_styles[i]->font_style.psz_fontname ) free( p_sys->pp_ssa_styles[i]->font_style.psz_fontname );
292             p_sys->pp_ssa_styles[i]->font_style.psz_fontname = NULL;
293             if( p_sys->pp_ssa_styles[i] ) free( p_sys->pp_ssa_styles[i] ); p_sys->pp_ssa_styles[i] = NULL;
294         }
295         free( p_sys->pp_ssa_styles ); p_sys->pp_ssa_styles = NULL;
296     }
297
298     free( p_sys );
299 }
300
301 /*****************************************************************************
302  * ParseText: parse an text subtitle packet and send it to the video output
303  *****************************************************************************/
304 static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
305 {
306     decoder_sys_t *p_sys = p_dec->p_sys;
307     subpicture_t *p_spu = NULL;
308     char *psz_subtitle = NULL;
309     video_format_t fmt;
310
311     /* We cannot display a subpicture with no date */
312     if( p_block->i_pts == 0 )
313     {
314         msg_Warn( p_dec, "subtitle without a date" );
315         return NULL;
316     }
317
318     /* Check validity of packet data */
319     if( p_block->i_buffer <= 1 || p_block->p_buffer[0] == '\0' )
320     {
321         msg_Warn( p_dec, "empty subtitle" );
322         return NULL;
323     }
324
325     /* Should be resiliant against bad subtitles */
326     psz_subtitle = strndup( (const char *)p_block->p_buffer,
327                             p_block->i_buffer );
328     if( psz_subtitle == NULL )
329         return NULL;
330
331     if( p_sys->iconv_handle == (vlc_iconv_t)-1 )
332         EnsureUTF8( psz_subtitle );
333     else
334     {
335
336         if( p_sys->b_autodetect_utf8 )
337         {
338             if( IsUTF8( psz_subtitle ) == NULL )
339             {
340                 msg_Dbg( p_dec, "invalid UTF-8 sequence: "
341                          "disabling UTF-8 subtitles autodetection" );
342                 p_sys->b_autodetect_utf8 = VLC_FALSE;
343             }
344         }
345
346         if( !p_sys->b_autodetect_utf8 )
347         {
348             size_t inbytes_left = strlen( psz_subtitle );
349             size_t outbytes_left = 6 * inbytes_left;
350             char *psz_new_subtitle = malloc( outbytes_left + 1 );
351             char *psz_convert_buffer_out = psz_new_subtitle;
352             const char *psz_convert_buffer_in = psz_subtitle;
353
354             size_t ret = vlc_iconv( p_sys->iconv_handle,
355                                     &psz_convert_buffer_in, &inbytes_left,
356                                     &psz_convert_buffer_out, &outbytes_left );
357
358             *psz_convert_buffer_out++ = '\0';
359             free( psz_subtitle );
360
361             if( ( ret == (size_t)(-1) ) || inbytes_left )
362             {
363                 free( psz_new_subtitle );
364                 msg_Err( p_dec, _("failed to convert subtitle encoding.\n"
365                         "Try manually setting a character-encoding "
366                                 "before you open the file.") );
367                 return NULL;
368             }
369
370             psz_subtitle = realloc( psz_new_subtitle,
371                                     psz_convert_buffer_out - psz_new_subtitle );
372         }
373     }
374
375     /* Create the subpicture unit */
376     p_spu = p_dec->pf_spu_buffer_new( p_dec );
377     if( !p_spu )
378     {
379         msg_Warn( p_dec, "can't get spu buffer" );
380         if( psz_subtitle ) free( psz_subtitle );
381         return NULL;
382     }
383
384     /* Create a new subpicture region */
385     memset( &fmt, 0, sizeof(video_format_t) );
386     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
387     fmt.i_aspect = 0;
388     fmt.i_width = fmt.i_height = 0;
389     fmt.i_x_offset = fmt.i_y_offset = 0;
390     p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_dec), &fmt );
391     if( !p_spu->p_region )
392     {
393         msg_Err( p_dec, "cannot allocate SPU region" );
394         if( psz_subtitle ) free( psz_subtitle );
395         p_dec->pf_spu_buffer_del( p_dec, p_spu );
396         return NULL;
397     }
398
399     /* Decode and format the subpicture unit */
400     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','s','a',' ') )
401     {
402         /* Normal text subs, easy markup */
403         p_spu->i_flags = SUBPICTURE_ALIGN_BOTTOM | p_sys->i_align;
404         p_spu->i_x = p_sys->i_align ? 20 : 0;
405         p_spu->i_y = 10;
406
407         /* Remove formatting from string */
408         StripTags( psz_subtitle );
409
410         p_spu->p_region->psz_text = psz_subtitle;
411         p_spu->i_start = p_block->i_pts;
412         p_spu->i_stop = p_block->i_pts + p_block->i_length;
413         p_spu->b_ephemer = (p_block->i_length == 0);
414         p_spu->b_absolute = VLC_FALSE;
415     }
416     else
417     {
418         /* Decode SSA strings */
419         ParseSSAString( p_dec, psz_subtitle, p_spu );
420         p_spu->i_start = p_block->i_pts;
421         p_spu->i_stop = p_block->i_pts + p_block->i_length;
422         p_spu->b_ephemer = (p_block->i_length == 0);
423         p_spu->b_absolute = VLC_FALSE;
424         p_spu->i_original_picture_width = p_sys->i_original_width;
425         p_spu->i_original_picture_height = p_sys->i_original_height;
426         if( psz_subtitle ) free( psz_subtitle );
427     }
428     return p_spu;
429 }
430
431 static void ParseSSAString( decoder_t *p_dec, char *psz_subtitle, subpicture_t *p_spu_in )
432 {
433     /* We expect MKV formatted SSA:
434      * ReadOrder, Layer, Style, CharacterName, MarginL, MarginR,
435      * MarginV, Effect, Text */
436     decoder_sys_t   *p_sys = p_dec->p_sys;
437     subpicture_t    *p_spu = p_spu_in;
438     ssa_style_t     *p_style = NULL;
439     char            *psz_new_subtitle = NULL;
440     char            *psz_buffer_sub = NULL;
441     char            *psz_style = NULL;
442     char            *psz_style_start = NULL;
443     char            *psz_style_end = NULL;
444     int             i_text = 0, i_comma = 0, i_strlen = 0, i;
445     int             i_margin_l = 0, i_margin_r = 0, i_margin_v = 0;
446
447     psz_buffer_sub = psz_subtitle;
448
449     i_comma = 0;
450     while( i_comma < 8 && *psz_buffer_sub != '\0' )
451     {
452         if( *psz_buffer_sub == ',' )
453         {
454             i_comma++;
455             if( i_comma == 2 ) psz_style_start = &psz_buffer_sub[1];
456             if( i_comma == 3 ) psz_style_end = &psz_buffer_sub[0];
457             if( i_comma == 4 ) i_margin_l = (int)strtol( psz_buffer_sub+1, NULL, 10 );
458             if( i_comma == 5 ) i_margin_r = (int)strtol( psz_buffer_sub+1, NULL, 10 );
459             if( i_comma == 6 ) i_margin_v = (int)strtol( psz_buffer_sub+1, NULL, 10 );
460         }
461         psz_buffer_sub++;
462     }
463
464     if( *psz_buffer_sub == '\0' && i_comma == 8 )
465     {
466         msg_Dbg( p_dec, "couldn't find all fields in this SSA line" );
467         return;
468     }
469
470     psz_new_subtitle = malloc( strlen( psz_buffer_sub ) + 1);
471     i_text = 0;
472     while( psz_buffer_sub[0] != '\0' )
473     {
474         if( psz_buffer_sub[0] == '\\' && psz_buffer_sub[1] == 'n' )
475         {
476             psz_new_subtitle[i_text] = ' ';
477             i_text++;
478             psz_buffer_sub += 2;
479         }
480         else if( psz_buffer_sub[0] == '\\' && psz_buffer_sub[1] == 'N' )
481         {
482             psz_new_subtitle[i_text] = '\n';
483             i_text++;
484             psz_buffer_sub += 2;
485         }
486         else if( psz_buffer_sub[0] == '{' &&
487                  psz_buffer_sub[1] == '\\' )
488         {
489             /* SSA control code */
490             while( psz_buffer_sub[0] != '\0' &&
491                    psz_buffer_sub[0] != '}' )
492             {
493                 psz_buffer_sub++;
494             }
495             psz_buffer_sub++;
496         }
497         else
498         {
499             psz_new_subtitle[i_text] = psz_buffer_sub[0];
500             i_text++;
501             psz_buffer_sub++;
502         }
503     }
504     psz_new_subtitle[i_text] = '\0';
505
506     i_strlen = __MAX( psz_style_end - psz_style_start, 0);
507     psz_style = (char *)malloc( i_strlen + 1);
508     psz_style = memcpy( psz_style, psz_style_start, i_strlen );
509     psz_style[i_strlen] = '\0';
510
511     for( i = 0; i < p_sys->i_ssa_styles; i++ )
512     {
513         if( !strcmp( p_sys->pp_ssa_styles[i]->psz_stylename, psz_style ) )
514             p_style = p_sys->pp_ssa_styles[i];
515     }
516     if( psz_style ) free( psz_style );
517
518     p_spu->p_region->psz_text = psz_new_subtitle;
519     if( p_style == NULL )
520     {
521         p_spu->i_flags = SUBPICTURE_ALIGN_BOTTOM | p_sys->i_align;
522         p_spu->i_x = p_sys->i_align ? 20 : 0;
523         p_spu->i_y = 10;
524     }
525     else
526     {
527         msg_Dbg( p_dec, "style is: %s", p_style->psz_stylename);
528         p_spu->p_region->p_style = &p_style->font_style;
529         p_spu->i_flags = p_style->i_align;
530         if( p_style->i_align & SUBPICTURE_ALIGN_LEFT )
531         {
532             p_spu->i_x = (i_margin_l) ? i_margin_l : p_style->i_margin_h;
533         }
534         else if( p_style->i_align & SUBPICTURE_ALIGN_RIGHT ) 
535         {
536             p_spu->i_x = (i_margin_r) ? i_margin_r : p_style->i_margin_h;
537         }
538         p_spu->i_y = (i_margin_v) ? i_margin_v : p_style->i_margin_v;
539     }
540 }
541
542 static char* GotoNextLine( char *psz_text )
543 {
544     char *p_newline = psz_text;
545
546     while( p_newline[0] != '\0' )
547     {
548         if( p_newline[0] == '\n' || p_newline[0] == '\r' )
549         {
550             p_newline++;
551             while( p_newline[0] == '\n' || p_newline[0] == '\r' )
552                 p_newline++;
553             break;
554         }
555         else p_newline++;
556     }
557     return p_newline;
558 }
559
560 /*****************************************************************************
561  * ParseColor: SSA stores color in BBGGRR, in ASS it uses AABBGGRR
562  * The string value in the string can be a pure integer, or hexadecimal &HBBGGRR
563  *****************************************************************************/
564 static void ParseColor( decoder_t *p_dec, char *psz_color, int *pi_color, int *pi_alpha )
565 {
566     int i_color = 0;
567     if( !strncasecmp( psz_color, "&H", 2 ) )
568     {
569         /* textual HEX representation */
570         i_color = (int) strtol( psz_color+2, NULL, 16 );
571     }
572     else i_color = (int) strtol( psz_color, NULL, 0 );
573
574     *pi_color = 0;
575     *pi_color |= ( ( i_color & 0x000000FF ) << 16 ); /* Red */
576     *pi_color |= ( ( i_color & 0x0000FF00 ) );       /* Green */
577     *pi_color |= ( ( i_color & 0x00FF0000 ) >> 16 ); /* Blue */
578
579     if( pi_alpha != NULL )
580         *pi_alpha = ( i_color & 0xFF000000 ) >> 24;
581 }
582
583 /*****************************************************************************
584  * ParseSSAHeader: Retrieve global formatting information etc
585  *****************************************************************************/
586 static void ParseSSAHeader( decoder_t *p_dec )
587 {
588     decoder_sys_t *p_sys = p_dec->p_sys;
589     char *psz_parser = NULL;
590     char *psz_header = malloc( p_dec->fmt_in.i_extra+1 );
591     int i_section_type = 1;
592
593     memcpy( psz_header, p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
594     psz_header[ p_dec->fmt_in.i_extra] = '\0';
595
596     /* Handle [Script Info] section */
597     psz_parser = strcasestr( psz_header, "[Script Info]" );
598     if( psz_parser == NULL ) goto eof;
599
600     psz_parser = GotoNextLine( psz_parser );
601
602     while( psz_parser[0] != '\0' )
603     {
604         int temp;
605         char buffer_text[MAX_LINE + 1];
606
607         if( psz_parser[0] == '!' || psz_parser[0] == ';' ) /* comment */;
608         else if( sscanf( psz_parser, "PlayResX: %d", &temp ) == 1 )
609             p_sys->i_original_width = ( temp > 0 ) ? temp : -1;
610         else if( sscanf( psz_parser, "PlayResY: %d", &temp ) == 1 )
611             p_sys->i_original_height = ( temp > 0 ) ? temp : -1;
612         else if( sscanf( psz_parser, "Script Type: %8192s", buffer_text ) == 1 )
613         {
614             if( !strcasecmp( buffer_text, "V4.00+" ) ) p_sys->b_ass = VLC_TRUE;
615         }
616         else if( !strncasecmp( psz_parser, "[V4 Styles]", 11 ) )
617             i_section_type = 1;
618         else if( !strncasecmp( psz_parser, "[V4+ Styles]", 12) )
619         {
620             i_section_type = 2;
621             p_sys->b_ass = VLC_TRUE;
622         }
623         else if( !strncasecmp( psz_parser, "[Events]", 8 ) )
624             i_section_type = 4;
625         else if( !strncasecmp( psz_parser, "Style:", 6 ) )
626         {
627             int i_font_size, i_bold, i_italic, i_border, i_outline, i_shadow, i_underline,
628                 i_strikeout, i_scale_x, i_scale_y, i_spacing, i_align, i_margin_l, i_margin_r, i_margin_v;
629
630             char psz_temp_stylename[MAX_LINE+1];
631             char psz_temp_fontname[MAX_LINE+1];
632             char psz_temp_color1[MAX_LINE+1];
633             char psz_temp_color2[MAX_LINE+1];
634             char psz_temp_color3[MAX_LINE+1];
635             char psz_temp_color4[MAX_LINE+1];
636
637             if( i_section_type == 1 ) /* V4 */
638             {
639                 if( sscanf( psz_parser, "Style: %8192[^,],%8192[^,],%d,%8192[^,],%8192[^,],%8192[^,],%8192[^,],%d,%d,%d,%d,%d,%d,%d,%d,%d%*[^\r\n]",
640                     psz_temp_stylename, psz_temp_fontname, &i_font_size,
641                     psz_temp_color1, psz_temp_color2, psz_temp_color3, psz_temp_color4, &i_bold, &i_italic,
642                     &i_border, &i_outline, &i_shadow, &i_align, &i_margin_l, &i_margin_r, &i_margin_v ) == 16 )
643                 {
644                     ssa_style_t *p_style = malloc( sizeof(ssa_style_t) );
645
646                     p_style->psz_stylename = strdup( psz_temp_stylename );
647                     p_style->font_style.psz_fontname = strdup( psz_temp_fontname );
648                     p_style->font_style.i_font_size = i_font_size;
649
650                     ParseColor( p_dec, psz_temp_color1, &p_style->font_style.i_font_color, NULL );
651                     ParseColor( p_dec, psz_temp_color4, &p_style->font_style.i_shadow_color, NULL );
652                     p_style->font_style.i_outline_color = p_style->font_style.i_shadow_color;
653                     p_style->font_style.i_font_alpha = p_style->font_style.i_outline_alpha = p_style->font_style.i_shadow_alpha = 0x00;
654                     p_style->font_style.i_style_flags = 0;
655                     if( i_bold ) p_style->font_style.i_style_flags |= STYLE_BOLD;
656                     if( i_italic ) p_style->font_style.i_style_flags |= STYLE_ITALIC;
657
658                     if( i_border == 1 ) p_style->font_style.i_style_flags |= (STYLE_ITALIC | STYLE_OUTLINE);
659                     else if( i_border == 3 )
660                     {
661                         p_style->font_style.i_style_flags |= STYLE_BACKGROUND;
662                         p_style->font_style.i_background_color = p_style->font_style.i_shadow_color;
663                         p_style->font_style.i_background_alpha = p_style->font_style.i_shadow_alpha;
664                     }
665                     p_style->font_style.i_shadow_width = i_shadow;
666                     p_style->font_style.i_outline_width = i_outline;
667
668                     p_style->i_align = 0;
669                     if( i_align == 1 || i_align == 5 || i_align == 9 ) p_style->i_align |= SUBPICTURE_ALIGN_LEFT;
670                     if( i_align == 3 || i_align == 7 || i_align == 11 ) p_style->i_align |= SUBPICTURE_ALIGN_RIGHT;
671                     if( i_align < 4 ) p_style->i_align |= SUBPICTURE_ALIGN_BOTTOM;
672                     else if( i_align < 8 ) p_style->i_align |= SUBPICTURE_ALIGN_TOP; 
673
674                     p_style->i_margin_h = ( p_style->i_align & SUBPICTURE_ALIGN_RIGHT ) ? i_margin_r : i_margin_l;
675                     p_style->i_margin_v = i_margin_v;
676
677                     TAB_APPEND( p_sys->i_ssa_styles, p_sys->pp_ssa_styles, p_style );
678                 }
679                 else msg_Warn( p_dec, "SSA v4 styleline parsing failed" );
680             }
681             else if( i_section_type == 2 ) /* V4+ */
682             {
683                 /* Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour,
684                    Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline,
685                    Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
686                 */
687                 if( sscanf( psz_parser, "Style: %8192[^,],%8192[^,],%d,%8192[^,],%8192[^,],%8192[^,],%8192[^,],%d,%d,%d,%d,%d,%d,%d,%*f,%d,%d,%d,%d,%d,%d,%d%*[^\r\n]",
688                     psz_temp_stylename, psz_temp_fontname, &i_font_size,
689                     psz_temp_color1, psz_temp_color2, psz_temp_color3, psz_temp_color4, &i_bold, &i_italic,
690                     &i_underline, &i_strikeout, &i_scale_x, &i_scale_y, &i_spacing, &i_border, &i_outline,
691                     &i_shadow, &i_align, &i_margin_l, &i_margin_r, &i_margin_v ) == 21 )
692                 {
693                     ssa_style_t *p_style = malloc( sizeof(ssa_style_t) );
694
695                     p_style->psz_stylename = strdup( psz_temp_stylename );
696                     p_style->font_style.psz_fontname = strdup( psz_temp_fontname );
697                     p_style->font_style.i_font_size = i_font_size;
698                     msg_Dbg( p_dec, psz_temp_color1 );
699                     ParseColor( p_dec, psz_temp_color1, &p_style->font_style.i_font_color, &p_style->font_style.i_font_alpha );
700                     ParseColor( p_dec, psz_temp_color3, &p_style->font_style.i_outline_color, &p_style->font_style.i_outline_alpha );
701                     ParseColor( p_dec, psz_temp_color4, &p_style->font_style.i_shadow_color, &p_style->font_style.i_shadow_alpha );
702
703                     p_style->font_style.i_style_flags = 0;
704                     if( i_bold ) p_style->font_style.i_style_flags |= STYLE_BOLD;
705                     if( i_italic ) p_style->font_style.i_style_flags |= STYLE_ITALIC;
706                     if( i_underline ) p_style->font_style.i_style_flags |= STYLE_UNDERLINE;
707                     if( i_strikeout ) p_style->font_style.i_style_flags |= STYLE_STRIKEOUT;
708                     if( i_border == 1 ) p_style->font_style.i_style_flags |= (STYLE_ITALIC | STYLE_OUTLINE);
709                     else if( i_border == 3 )
710                     {
711                         p_style->font_style.i_style_flags |= STYLE_BACKGROUND;
712                         p_style->font_style.i_background_color = p_style->font_style.i_shadow_color;
713                         p_style->font_style.i_background_alpha = p_style->font_style.i_shadow_alpha;
714                     }
715                     p_style->font_style.i_shadow_width  = ( i_border == 1 ) ? i_shadow : 0;
716                     p_style->font_style.i_outline_width = ( i_border == 1 ) ? i_outline : 0;
717                     p_style->font_style.i_spacing = i_spacing;
718                     //p_style->font_style.f_angle = f_angle;
719
720                     p_style->i_align = 0;
721                     if( i_align == 0x1 || i_align == 0x4 || i_align == 0x1 ) p_style->i_align |= SUBPICTURE_ALIGN_LEFT;
722                     if( i_align == 0x3 || i_align == 0x6 || i_align == 0x9 ) p_style->i_align |= SUBPICTURE_ALIGN_RIGHT;
723                     if( i_align == 0x7 || i_align == 0x8 || i_align == 0x9 ) p_style->i_align |= SUBPICTURE_ALIGN_TOP;
724                     if( i_align == 0x1 || i_align == 0x2 || i_align == 0x3 ) p_style->i_align |= SUBPICTURE_ALIGN_BOTTOM;
725                     p_style->i_margin_h = ( p_style->i_align & SUBPICTURE_ALIGN_RIGHT ) ? i_margin_r : i_margin_l;
726                     p_style->i_margin_v = i_margin_v;
727
728                     /*TODO: Ignored: angle i_scale_x|y (fontscaling), i_encoding */
729                     TAB_APPEND( p_sys->i_ssa_styles, p_sys->pp_ssa_styles, p_style );
730                 }
731                 else msg_Dbg( p_dec, "SSA V4+ styleline parsing failed" );
732             }
733         }
734         psz_parser = GotoNextLine( psz_parser );
735     }
736
737 eof:
738     if( psz_header ) free( psz_header );
739     return;
740 }
741
742 static void StripTags( char *psz_text )
743 {
744     int i_left_moves = 0;
745     vlc_bool_t b_inside_tag = VLC_FALSE;
746     int i = 0;
747     int i_tag_start = -1;
748     while( psz_text[ i ] )
749     {
750         if( !b_inside_tag )
751         {
752             if( psz_text[ i ] == '<' )
753             {
754                 b_inside_tag = VLC_TRUE;
755                 i_tag_start = i;
756             }
757             psz_text[ i - i_left_moves ] = psz_text[ i ];
758         }
759         else
760         {
761             if( ( psz_text[ i ] == ' ' ) ||
762                 ( psz_text[ i ] == '\t' ) ||
763                 ( psz_text[ i ] == '\n' ) ||
764                 ( psz_text[ i ] == '\r' ) )
765             {
766                 b_inside_tag = VLC_FALSE;
767                 i_tag_start = -1;
768             }
769             else if( psz_text[ i ] == '>' )
770             {
771                 i_left_moves += i - i_tag_start + 1;
772                 i_tag_start = -1;
773                 b_inside_tag = VLC_FALSE;
774             }
775             else
776             {
777                 psz_text[ i - i_left_moves ] = psz_text[ i ];
778             }
779         }
780         i++;
781     }
782     psz_text[ i - i_left_moves ] = '\0';
783 }