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