]> git.sesse.net Git - vlc/blob - modules/codec/subsdec.c
* Scale SSA subs if necessarry.
[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             sprintf( 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         p_spu->i_original_picture_width = p_sys->i_original_width;
380         p_spu->i_original_picture_height = p_sys->i_original_height;
381         if( psz_subtitle ) free( psz_subtitle );
382     }
383     return p_spu;
384 }
385
386 static void ParseSSAString( decoder_t *p_dec, char *psz_subtitle, subpicture_t *p_spu_in )
387 {
388     /* We expect MKV formatted SSA:
389      * ReadOrder, Layer, Style, CharacterName, MarginL, MarginR,
390      * MarginV, Effect, Text */
391     decoder_sys_t   *p_sys = p_dec->p_sys;
392     subpicture_t    *p_spu = p_spu_in;
393     ssa_style_t     *p_style = NULL;
394     char            *psz_new_subtitle = NULL;
395     char            *psz_buffer_sub = NULL;
396     char            *psz_style = NULL;
397     char            *psz_style_start = NULL;
398     char            *psz_style_end = NULL;
399     int             i_text = 0, i_comma = 0, i_strlen = 0, i;
400     int             i_margin_l = 0, i_margin_r = 0, i_margin_v = 0;
401
402     psz_buffer_sub = psz_subtitle;
403
404     i_comma = 0;
405     while( i_comma < 8 && *psz_buffer_sub != '\0' )
406     {
407         if( *psz_buffer_sub == ',' )
408         {
409             i_comma++;
410             if( i_comma == 2 ) psz_style_start = &psz_buffer_sub[1];
411             if( i_comma == 3 ) psz_style_end = &psz_buffer_sub[0];
412             if( i_comma == 4 ) i_margin_l = (int)strtol( psz_buffer_sub+1, NULL, 10 );
413             if( i_comma == 5 ) i_margin_r = (int)strtol( psz_buffer_sub+1, NULL, 10 );
414             if( i_comma == 6 ) i_margin_v = (int)strtol( psz_buffer_sub+1, NULL, 10 );
415         }
416         psz_buffer_sub++;
417     }
418
419     if( *psz_buffer_sub == '\0' && i_comma == 8 )
420     {
421         msg_Dbg( p_dec, "couldn't find all fields in this SSA line" );
422         return;
423     }
424
425     psz_new_subtitle = malloc( strlen( psz_buffer_sub ) + 1);
426     i_text = 0;
427     while( psz_buffer_sub[0] != '\0' )
428     {
429         if( psz_buffer_sub[0] == '\\' && psz_buffer_sub[1] == 'n' )
430         {
431             psz_new_subtitle[i_text] = ' ';
432             i_text++;
433             psz_buffer_sub += 2;
434         }
435         else if( psz_buffer_sub[0] == '\\' && psz_buffer_sub[1] == 'N' )
436         {
437             psz_new_subtitle[i_text] = '\n';
438             i_text++;
439             psz_buffer_sub += 2;
440         }
441         else if( psz_buffer_sub[0] == '{' &&
442                  psz_buffer_sub[1] == '\\' )
443         {
444             /* SSA control code */
445             while( psz_buffer_sub[0] != '\0' &&
446                    psz_buffer_sub[0] != '}' )
447             {
448                 psz_buffer_sub++;
449             }
450             psz_buffer_sub++;
451         }
452         else
453         {
454             psz_new_subtitle[i_text] = psz_buffer_sub[0];
455             i_text++;
456             psz_buffer_sub++;
457         }
458     }
459     psz_new_subtitle[i_text] = '\0';
460
461     i_strlen = __MAX( psz_style_end - psz_style_start, 0);
462     psz_style = (char *)malloc( i_strlen + 1);
463     psz_style = memcpy( psz_style, psz_style_start, i_strlen );
464     psz_style[i_strlen] = '\0';
465
466     for( i = 0; i < p_sys->i_ssa_styles; i++ )
467     {
468         if( !strcmp( p_sys->pp_ssa_styles[i]->psz_stylename, psz_style ) )
469             p_style = p_sys->pp_ssa_styles[i];
470     }
471     if( psz_style ) free( psz_style );
472
473     p_spu->p_region->psz_text = psz_new_subtitle;
474     if( p_style == NULL )
475     {
476         p_spu->i_flags = SUBPICTURE_ALIGN_BOTTOM | p_sys->i_align;
477         p_spu->i_x = p_sys->i_align ? 20 : 0;
478         p_spu->i_y = 10;
479     }
480     else
481     {
482         msg_Dbg( p_dec, "style is: %s", p_style->psz_stylename);
483         p_spu->p_region->p_style = &p_style->font_style;
484         p_spu->i_flags = p_style->i_align;
485         if( p_style->i_align & SUBPICTURE_ALIGN_LEFT )
486         {
487             p_spu->i_x = (i_margin_l) ? i_margin_l : p_style->i_margin_h;
488         }
489         else if( p_style->i_align & SUBPICTURE_ALIGN_RIGHT ) 
490         {
491             p_spu->i_x = (i_margin_r) ? i_margin_r : p_style->i_margin_h;
492         }
493         p_spu->i_y = (i_margin_v) ? i_margin_v : p_style->i_margin_v;
494     }
495 }
496
497 static char* GotoNextLine( char *psz_text )
498 {
499     char *p_newline = psz_text;
500     
501     while( p_newline[0] != '\0' )
502     {
503         if( p_newline[0] == '\n' || p_newline[0] == '\r' )
504         {
505             p_newline++;
506             while( p_newline[0] == '\n' || p_newline[0] == '\r' )
507                 p_newline++;
508             break;
509         }
510         else p_newline++;
511     }
512     return p_newline;
513 }
514
515 /*****************************************************************************
516  * ParseColor: SSA stores color in BBGGRR, in ASS it uses AABBGGRR
517  * The string value in the string can be a pure integer, or hexadecimal &HBBGGRR
518  *****************************************************************************/
519 static void ParseColor( decoder_t *p_dec, char *psz_color, int *pi_color, int *pi_alpha )
520 {
521     int i_color = 0;
522     if( !strncasecmp( psz_color, "&H", 2 ) )
523     {
524         /* textual HEX representation */
525         i_color = (int) strtol( psz_color+2, NULL, 16 );
526     }
527     else i_color = (int) strtol( psz_color, NULL, 0 );
528     
529     *pi_color = 0;
530     *pi_color |= ( ( i_color & 0x000000FF ) << 16 ); /* Red */
531     *pi_color |= ( ( i_color & 0x0000FF00 ) );       /* Green */
532     *pi_color |= ( ( i_color & 0x00FF0000 ) >> 16 ); /* Blue */
533     
534     if( pi_alpha != NULL )
535         *pi_alpha = ( i_color & 0xFF000000 ) >> 24;
536 }
537
538 /*****************************************************************************
539  * ParseSSAHeader: Retrieve global formatting information etc
540  *****************************************************************************/
541 static void ParseSSAHeader( decoder_t *p_dec )
542 {
543     decoder_sys_t *p_sys = p_dec->p_sys;
544     char *psz_parser = NULL;
545     char *psz_header = malloc( p_dec->fmt_in.i_extra+1 );
546     int i_section_type = 1;
547     
548     memcpy( psz_header, p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
549     psz_header[ p_dec->fmt_in.i_extra] = '\0';
550     
551     /* Handle [Script Info] section */
552     psz_parser = strcasestr( psz_header, "[Script Info]" );
553     if( psz_parser == NULL ) goto eof;
554
555     psz_parser = GotoNextLine( psz_parser );
556
557     while( psz_parser[0] != '\0' )
558     {
559         int temp;
560         char buffer_text[MAX_LINE + 1];
561         
562         if( psz_parser[0] == '!' || psz_parser[0] == ';' ) /* comment */;
563         else if( sscanf( psz_parser, "PlayResX: %d", &temp ) == 1 )
564             p_sys->i_original_width = ( temp > 0 ) ? temp : -1;
565         else if( sscanf( psz_parser, "PlayResY: %d", &temp ) == 1 )
566             p_sys->i_original_height = ( temp > 0 ) ? temp : -1;
567         else if( sscanf( psz_parser, "Script Type: %8192s", buffer_text ) == 1 )
568         {
569             if( !strcasecmp( buffer_text, "V4.00+" ) ) p_sys->b_ass = VLC_TRUE;
570         }
571         else if( !strncasecmp( psz_parser, "[V4 Styles]", 11 ) )
572             i_section_type = 1;
573         else if( !strncasecmp( psz_parser, "[V4+ Styles]", 12) )
574         {
575             i_section_type = 2;
576             p_sys->b_ass = VLC_TRUE;
577         }
578         else if( !strncasecmp( psz_parser, "[Events]", 8 ) )
579             i_section_type = 4;
580         else if( !strncasecmp( psz_parser, "Style:", 6 ) )
581         {
582             int i_font_size, i_bold, i_italic, i_border, i_outline, i_shadow, i_underline,
583                 i_strikeout, i_scale_x, i_scale_y, i_spacing, i_align, i_margin_l, i_margin_r, i_margin_v;
584
585             char psz_temp_stylename[MAX_LINE+1];
586             char psz_temp_fontname[MAX_LINE+1];
587             char psz_temp_color1[MAX_LINE+1];
588             char psz_temp_color2[MAX_LINE+1];
589             char psz_temp_color3[MAX_LINE+1];
590             char psz_temp_color4[MAX_LINE+1];
591
592             if( i_section_type == 1 ) /* V4 */
593             {
594                 if( sscanf( psz_parser, "Style: %8192[^,],%8192[^,],%d,%8192[^,],%8192[^,],%8192[^,],%8192[^,],%d,%d,%d,%d,%d,%d,%d,%d,%d%*[^\r\n]",
595                     psz_temp_stylename, psz_temp_fontname, &i_font_size,
596                     psz_temp_color1, psz_temp_color2, psz_temp_color3, psz_temp_color4, &i_bold, &i_italic,
597                     &i_border, &i_outline, &i_shadow, &i_align, &i_margin_l, &i_margin_r, &i_margin_v ) == 16 )
598                 {
599                     ssa_style_t *p_style = malloc( sizeof(ssa_style_t) );
600
601                     p_style->psz_stylename = strdup( psz_temp_stylename );
602                     p_style->font_style.psz_fontname = strdup( psz_temp_fontname );
603                     p_style->font_style.i_font_size = i_font_size;
604
605                     ParseColor( p_dec, psz_temp_color1, &p_style->font_style.i_font_color, NULL );
606                     ParseColor( p_dec, psz_temp_color4, &p_style->font_style.i_shadow_color, NULL );
607                     p_style->font_style.i_outline_color = p_style->font_style.i_shadow_color;
608                     p_style->font_style.i_font_alpha = p_style->font_style.i_outline_alpha = p_style->font_style.i_shadow_alpha = 0x00;
609                     p_style->font_style.i_style_flags = 0;
610                     if( i_bold ) p_style->font_style.i_style_flags |= STYLE_BOLD;
611                     if( i_italic ) p_style->font_style.i_style_flags |= STYLE_ITALIC;
612     
613                     if( i_border == 1 ) p_style->font_style.i_style_flags |= (STYLE_ITALIC | STYLE_OUTLINE);
614                     else if( i_border == 3 )
615                     {
616                         p_style->font_style.i_style_flags |= STYLE_BACKGROUND;
617                         p_style->font_style.i_background_color = p_style->font_style.i_shadow_color;
618                         p_style->font_style.i_background_alpha = p_style->font_style.i_shadow_alpha;
619                     }
620                     p_style->font_style.i_shadow_width = i_shadow;
621                     p_style->font_style.i_outline_width = i_outline;
622
623                     p_style->i_align = 0;
624                     if( i_align == 1 || i_align == 5 || i_align == 9 ) p_style->i_align |= SUBPICTURE_ALIGN_LEFT;
625                     if( i_align == 3 || i_align == 7 || i_align == 11 ) p_style->i_align |= SUBPICTURE_ALIGN_RIGHT;
626                     if( i_align < 4 ) p_style->i_align |= SUBPICTURE_ALIGN_BOTTOM;
627                     else if( i_align < 8 ) p_style->i_align |= SUBPICTURE_ALIGN_TOP; 
628
629                     p_style->i_margin_h = ( p_style->i_align & SUBPICTURE_ALIGN_RIGHT ) ? i_margin_r : i_margin_l;
630                     p_style->i_margin_v = i_margin_v;
631
632                     TAB_APPEND( p_sys->i_ssa_styles, p_sys->pp_ssa_styles, p_style );
633                 }
634                 else msg_Warn( p_dec, "SSA v4 styleline parsing failed" );
635             }
636             else if( i_section_type == 2 ) /* V4+ */
637             {
638                 /* Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour,
639                    Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline,
640                    Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
641                 */
642                 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]",
643                     psz_temp_stylename, psz_temp_fontname, &i_font_size,
644                     psz_temp_color1, psz_temp_color2, psz_temp_color3, psz_temp_color4, &i_bold, &i_italic,
645                     &i_underline, &i_strikeout, &i_scale_x, &i_scale_y, &i_spacing, &i_border, &i_outline,
646                     &i_shadow, &i_align, &i_margin_l, &i_margin_r, &i_margin_v ) == 21 )
647                 {
648                     ssa_style_t *p_style = malloc( sizeof(ssa_style_t) );
649
650                     p_style->psz_stylename = strdup( psz_temp_stylename );
651                     p_style->font_style.psz_fontname = strdup( psz_temp_fontname );
652                     p_style->font_style.i_font_size = i_font_size;
653                     msg_Dbg( p_dec, psz_temp_color1 );
654                     ParseColor( p_dec, psz_temp_color1, &p_style->font_style.i_font_color, &p_style->font_style.i_font_alpha );
655                     ParseColor( p_dec, psz_temp_color3, &p_style->font_style.i_outline_color, &p_style->font_style.i_outline_alpha );
656                     ParseColor( p_dec, psz_temp_color4, &p_style->font_style.i_shadow_color, &p_style->font_style.i_shadow_alpha );
657
658                     p_style->font_style.i_style_flags = 0;
659                     if( i_bold ) p_style->font_style.i_style_flags |= STYLE_BOLD;
660                     if( i_italic ) p_style->font_style.i_style_flags |= STYLE_ITALIC;
661                     if( i_underline ) p_style->font_style.i_style_flags |= STYLE_UNDERLINE;
662                     if( i_strikeout ) p_style->font_style.i_style_flags |= STYLE_STRIKEOUT;
663                     if( i_border == 1 ) p_style->font_style.i_style_flags |= (STYLE_ITALIC | STYLE_OUTLINE);
664                     else if( i_border == 3 )
665                     {
666                         p_style->font_style.i_style_flags |= STYLE_BACKGROUND;
667                         p_style->font_style.i_background_color = p_style->font_style.i_shadow_color;
668                         p_style->font_style.i_background_alpha = p_style->font_style.i_shadow_alpha;
669                     }
670                     p_style->font_style.i_shadow_width  = ( i_border == 1 ) ? i_shadow : 0;
671                     p_style->font_style.i_outline_width = ( i_border == 1 ) ? i_outline : 0;
672                     p_style->font_style.i_spacing = i_spacing;
673                     //p_style->font_style.f_angle = f_angle;
674                     
675                     p_style->i_align = 0;
676                     if( i_align == 0x1 || i_align == 0x4 || i_align == 0x1 ) p_style->i_align |= SUBPICTURE_ALIGN_LEFT;
677                     if( i_align == 0x3 || i_align == 0x6 || i_align == 0x9 ) p_style->i_align |= SUBPICTURE_ALIGN_RIGHT;
678                     if( i_align == 0x7 || i_align == 0x8 || i_align == 0x9 ) p_style->i_align |= SUBPICTURE_ALIGN_TOP;
679                     if( i_align == 0x1 || i_align == 0x2 || i_align == 0x3 ) p_style->i_align |= SUBPICTURE_ALIGN_BOTTOM;
680                     p_style->i_margin_h = ( p_style->i_align & SUBPICTURE_ALIGN_RIGHT ) ? i_margin_r : i_margin_l;
681                     p_style->i_margin_v = i_margin_v;
682                     
683                     /*TODO: Ignored: angle i_scale_x|y (fontscaling), i_encoding */
684                     TAB_APPEND( p_sys->i_ssa_styles, p_sys->pp_ssa_styles, p_style );
685                 }
686                 else msg_Dbg( p_dec, "SSA V4+ styleline parsing failed" );
687             }
688         }
689         psz_parser = GotoNextLine( psz_parser );
690     }
691
692 eof:
693     if( psz_header ) free( psz_header );
694     return;
695 }
696
697 static void StripTags( char *psz_text )
698 {
699     int i_left_moves = 0;
700     vlc_bool_t b_inside_tag = VLC_FALSE;
701     int i = 0;
702     int i_tag_start = -1;
703     while( psz_text[ i ] )
704     {
705         if( !b_inside_tag )
706         {
707             if( psz_text[ i ] == '<' )
708             {
709                 b_inside_tag = VLC_TRUE;
710                 i_tag_start = i;
711             }
712             psz_text[ i - i_left_moves ] = psz_text[ i ];
713         }
714         else
715         {
716             if( ( psz_text[ i ] == ' ' ) ||
717                 ( psz_text[ i ] == '\t' ) ||
718                 ( psz_text[ i ] == '\n' ) ||
719                 ( psz_text[ i ] == '\r' ) )
720             {
721                 b_inside_tag = VLC_FALSE;
722                 i_tag_start = -1;
723             }
724             else if( psz_text[ i ] == '>' )
725             {
726                 i_left_moves += i - i_tag_start + 1;
727                 i_tag_start = -1;
728                 b_inside_tag = VLC_FALSE;
729             }
730             else
731             {
732                 psz_text[ i - i_left_moves ] = psz_text[ i ];
733             }
734         }
735         i++;
736     }
737     psz_text[ i - i_left_moves ] = '\0';
738 }