1 /*****************************************************************************
2 * subsdec.c : text subtitle decoder
3 *****************************************************************************
4 * Copyright (C) 2000-2006 VLC authors and VideoLAN
6 * Authors: Gildas Bazin <gbazin@videolan.org>
7 * Samuel Hocevar <sam@zoy.org>
8 * Derk-Jan Hartman <hartman at videolan dot org>
9 * Bernie Purcell <bitmap@videolan.org>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
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 Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this program; if not, write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24 *****************************************************************************/
26 /*****************************************************************************
28 *****************************************************************************/
37 #include <vlc_common.h>
38 #include <vlc_plugin.h>
39 #include <vlc_codec.h>
40 #include <vlc_charset.h>
45 /*****************************************************************************
47 *****************************************************************************/
48 static const char *const ppsz_encodings
[] = {
94 static const char *const ppsz_encoding_names
[] = {
96 The character encoding name in parenthesis corresponds to that used for
97 the GetACP translation. "Windows-1252" applies to Western European
98 languages using the Latin alphabet. */
99 N_("Default (Windows-1252)"),
100 N_("System codeset"),
101 N_("Universal (UTF-8)"),
102 N_("Universal (UTF-16)"),
103 N_("Universal (big endian UTF-16)"),
104 N_("Universal (little endian UTF-16)"),
105 N_("Universal, Chinese (GB18030)"),
107 /* ISO 8859 and the likes */
109 N_("Western European (Latin-9)"), /* mostly superset of Latin-1 */
110 N_("Western European (Windows-1252)"),
111 N_("Western European (IBM 00850)"),
113 N_("Eastern European (Latin-2)"),
114 N_("Eastern European (Windows-1250)"),
116 N_("Esperanto (Latin-3)"),
118 N_("Nordic (Latin-6)"), /* Latin 6 supersedes Latin 4 */
120 N_("Cyrillic (Windows-1251)"), /* ISO 8859-5 is not practically used */
121 N_("Russian (KOI8-R)"),
122 N_("Ukrainian (KOI8-U)"),
124 N_("Arabic (ISO 8859-6)"),
125 N_("Arabic (Windows-1256)"),
127 N_("Greek (ISO 8859-7)"),
128 N_("Greek (Windows-1253)"),
130 N_("Hebrew (ISO 8859-8)"),
131 N_("Hebrew (Windows-1255)"),
133 N_("Turkish (ISO 8859-9)"),
134 N_("Turkish (Windows-1254)"),
137 N_("Thai (TIS 620-2533/ISO 8859-11)"),
138 N_("Thai (Windows-874)"),
140 N_("Baltic (Latin-7)"),
141 N_("Baltic (Windows-1257)"),
142 /* 12 -> /dev/null */
144 N_("Celtic (Latin-8)"),
147 N_("South-Eastern European (Latin-10)"),
149 N_("Simplified Chinese (ISO-2022-CN-EXT)"),
150 N_("Simplified Chinese Unix (EUC-CN)"),
151 N_("Japanese (7-bits JIS/ISO-2022-JP-2)"),
152 N_("Japanese Unix (EUC-JP)"),
153 N_("Japanese (Shift JIS)"),
154 N_("Korean (EUC-KR/CP949)"),
155 N_("Korean (ISO-2022-KR)"),
156 N_("Traditional Chinese (Big5)"),
157 N_("Traditional Chinese Unix (EUC-TW)"),
158 N_("Hong-Kong Supplementary (HKSCS)"),
160 N_("Vietnamese (VISCII)"),
161 N_("Vietnamese (Windows-1258)"),
164 static const int pi_justification
[] = { -1, 0, 1, 2 };
165 static const char *const ppsz_justification_text
[] = {
166 N_("Auto"),N_("Center"),N_("Left"),N_("Right")
169 #define ENCODING_TEXT N_("Subtitle text encoding")
170 #define ENCODING_LONGTEXT N_("Set the encoding used in text subtitles")
171 #define ALIGN_TEXT N_("Subtitle justification")
172 #define ALIGN_LONGTEXT N_("Set the justification of subtitles")
173 #define AUTODETECT_UTF8_TEXT N_("UTF-8 subtitle autodetection")
174 #define AUTODETECT_UTF8_LONGTEXT N_("This enables automatic detection of " \
175 "UTF-8 encoding within subtitle files.")
177 static int OpenDecoder ( vlc_object_t
* );
178 static void CloseDecoder ( vlc_object_t
* );
181 set_shortname( N_("Subtitles"))
182 set_description( N_("Text subtitle decoder") )
183 set_capability( "spu decoder", 50 )
184 set_callbacks( OpenDecoder
, CloseDecoder
)
185 set_category( CAT_INPUT
)
186 set_subcategory( SUBCAT_INPUT_SCODEC
)
188 add_integer( "subsdec-align", -1, ALIGN_TEXT
, ALIGN_LONGTEXT
,
190 change_integer_list( pi_justification
, ppsz_justification_text
)
191 add_string( "subsdec-encoding", "",
192 ENCODING_TEXT
, ENCODING_LONGTEXT
, false )
193 change_string_list( ppsz_encodings
, ppsz_encoding_names
)
194 add_bool( "subsdec-autodetect-utf8", true,
195 AUTODETECT_UTF8_TEXT
, AUTODETECT_UTF8_LONGTEXT
, false )
198 /*****************************************************************************
200 *****************************************************************************/
201 #define NO_BREAKING_SPACE " "
205 int i_align
; /* Subtitles alignment on the vout */
207 vlc_iconv_t iconv_handle
; /* handle to iconv instance */
208 bool b_autodetect_utf8
;
212 static int DecodeBlock ( decoder_t
*, block_t
* );
213 static subpicture_t
*ParseText ( decoder_t
*, block_t
* );
214 static text_segment_t
*ParseSubtitles(int *pi_align
, const char * );
216 /*****************************************************************************
217 * OpenDecoder: probe the decoder and return score
218 *****************************************************************************
219 * Tries to launch a decoder and return score so that the interface is able
221 *****************************************************************************/
222 static int OpenDecoder( vlc_object_t
*p_this
)
224 decoder_t
*p_dec
= (decoder_t
*)p_this
;
225 decoder_sys_t
*p_sys
;
227 switch( p_dec
->fmt_in
.i_codec
)
230 case VLC_CODEC_ITU_T140
:
236 /* Allocate the memory needed to store the decoder's structure */
237 p_dec
->p_sys
= p_sys
= calloc( 1, sizeof( *p_sys
) );
241 p_dec
->pf_decode
= DecodeBlock
;
242 p_dec
->fmt_out
.i_codec
= 0;
246 p_sys
->iconv_handle
= (vlc_iconv_t
)-1;
247 p_sys
->b_autodetect_utf8
= false;
249 const char *encoding
;
252 /* First try demux-specified encoding */
253 if( p_dec
->fmt_in
.i_codec
== VLC_CODEC_ITU_T140
)
254 encoding
= "UTF-8"; /* IUT T.140 is always using UTF-8 */
256 if( p_dec
->fmt_in
.subs
.psz_encoding
&& *p_dec
->fmt_in
.subs
.psz_encoding
)
258 encoding
= p_dec
->fmt_in
.subs
.psz_encoding
;
259 msg_Dbg (p_dec
, "trying demuxer-specified character encoding: %s",
264 /* Second, try configured encoding */
265 if ((var
= var_InheritString (p_dec
, "subsdec-encoding")) != NULL
)
267 msg_Dbg (p_dec
, "trying configured character encoding: %s", var
);
268 if (!strcmp (var
, "system"))
273 /* ^ iconv() treats "" as nl_langinfo(CODESET) */
279 /* Third, try "local" encoding */
282 The Windows ANSI code page most commonly used for this language.
283 VLC uses this as a guess of the subtitle files character set
284 (if UTF-8 and UTF-16 autodetection fails).
285 Western European languages normally use "CP1252", which is a
286 Microsoft-variant of ISO 8859-1. That suits the Latin alphabet.
287 Other scripts use other code pages.
289 This MUST be a valid iconv character set. If unsure, please refer
290 the VideoLAN translators mailing list. */
291 encoding
= vlc_pgettext("GetACP", "CP1252");
292 msg_Dbg (p_dec
, "trying default character encoding: %s", encoding
);
295 /* Check UTF-8 autodetection */
296 if (var_InheritBool (p_dec
, "subsdec-autodetect-utf8"))
298 msg_Dbg (p_dec
, "using automatic UTF-8 detection");
299 p_sys
->b_autodetect_utf8
= true;
303 if (strcasecmp (encoding
, "UTF-8") && strcasecmp (encoding
, "utf8"))
305 p_sys
->iconv_handle
= vlc_iconv_open ("UTF-8", encoding
);
306 if (p_sys
->iconv_handle
== (vlc_iconv_t
)(-1))
307 msg_Err (p_dec
, "cannot convert from %s: %s", encoding
,
308 vlc_strerror_c(errno
));
312 p_sys
->i_align
= var_InheritInteger( p_dec
, "subsdec-align" );
317 /****************************************************************************
318 * DecodeBlock: the whole thing
319 ****************************************************************************
320 * This function must be fed with complete subtitles units.
321 ****************************************************************************/
322 static int DecodeBlock( decoder_t
*p_dec
, block_t
*p_block
)
326 if( p_block
== NULL
) /* No Drain */
327 return VLCDEC_SUCCESS
;
329 if( p_block
->i_flags
& BLOCK_FLAG_CORRUPTED
)
331 block_Release( p_block
);
332 return VLCDEC_SUCCESS
;
335 p_spu
= ParseText( p_dec
, p_block
);
337 block_Release( p_block
);
339 decoder_QueueSub( p_dec
, p_spu
);
340 return VLCDEC_SUCCESS
;
343 /*****************************************************************************
344 * CloseDecoder: clean up the decoder
345 *****************************************************************************/
346 static void CloseDecoder( vlc_object_t
*p_this
)
348 decoder_t
*p_dec
= (decoder_t
*)p_this
;
349 decoder_sys_t
*p_sys
= p_dec
->p_sys
;
351 if( p_sys
->iconv_handle
!= (vlc_iconv_t
)-1 )
352 vlc_iconv_close( p_sys
->iconv_handle
);
357 /*****************************************************************************
358 * ParseText: parse an text subtitle packet and send it to the video output
359 *****************************************************************************/
360 static subpicture_t
*ParseText( decoder_t
*p_dec
, block_t
*p_block
)
362 decoder_sys_t
*p_sys
= p_dec
->p_sys
;
363 subpicture_t
*p_spu
= NULL
;
365 if( p_block
->i_flags
& BLOCK_FLAG_CORRUPTED
)
368 /* We cannot display a subpicture with no date */
369 if( p_block
->i_pts
== VLC_TICK_INVALID
)
371 msg_Warn( p_dec
, "subtitle without a date" );
375 /* Check validity of packet data */
376 /* An "empty" line containing only \0 can be used to force
377 and ephemer picture from the screen */
378 if( p_block
->i_buffer
< 1 )
380 msg_Warn( p_dec
, "no subtitle data" );
384 char *psz_subtitle
= NULL
;
386 /* Should be resiliant against bad subtitles */
387 if( p_sys
->iconv_handle
== (vlc_iconv_t
)-1 ||
388 p_sys
->b_autodetect_utf8
)
390 psz_subtitle
= malloc( p_block
->i_buffer
+ 1 );
391 if( psz_subtitle
== NULL
)
393 memcpy( psz_subtitle
, p_block
->p_buffer
, p_block
->i_buffer
);
394 psz_subtitle
[p_block
->i_buffer
] = '\0';
397 if( p_sys
->iconv_handle
== (vlc_iconv_t
)-1 )
399 if (EnsureUTF8( psz_subtitle
) == NULL
)
401 msg_Err( p_dec
, "failed to convert subtitle encoding.\n"
402 "Try manually setting a character-encoding "
403 "before you open the file." );
408 if( p_sys
->b_autodetect_utf8
)
410 if( IsUTF8( psz_subtitle
) == NULL
)
412 msg_Dbg( p_dec
, "invalid UTF-8 sequence: "
413 "disabling UTF-8 subtitles autodetection" );
414 p_sys
->b_autodetect_utf8
= false;
418 if( !p_sys
->b_autodetect_utf8
)
420 size_t inbytes_left
= p_block
->i_buffer
;
421 size_t outbytes_left
= 6 * inbytes_left
;
422 char *psz_new_subtitle
= xmalloc( outbytes_left
+ 1 );
423 char *psz_convert_buffer_out
= psz_new_subtitle
;
424 const char *psz_convert_buffer_in
=
425 psz_subtitle
? psz_subtitle
: (char *)p_block
->p_buffer
;
427 size_t ret
= vlc_iconv( p_sys
->iconv_handle
,
428 &psz_convert_buffer_in
, &inbytes_left
,
429 &psz_convert_buffer_out
, &outbytes_left
);
431 *psz_convert_buffer_out
++ = '\0';
432 free( psz_subtitle
);
434 if( ( ret
== (size_t)(-1) ) || inbytes_left
)
436 free( psz_new_subtitle
);
437 msg_Err( p_dec
, "failed to convert subtitle encoding.\n"
438 "Try manually setting a character-encoding "
439 "before you open the file." );
443 psz_subtitle
= realloc( psz_new_subtitle
,
444 psz_convert_buffer_out
- psz_new_subtitle
);
446 psz_subtitle
= psz_new_subtitle
;
450 /* Create the subpicture unit */
451 p_spu
= decoder_NewSubpictureText( p_dec
);
454 free( psz_subtitle
);
457 p_spu
->i_start
= p_block
->i_pts
;
458 p_spu
->i_stop
= p_block
->i_pts
+ p_block
->i_length
;
459 p_spu
->b_ephemer
= (p_block
->i_length
== VLC_TICK_INVALID
);
460 p_spu
->b_absolute
= false;
462 subtext_updater_sys_t
*p_spu_sys
= p_spu
->updater
.p_sys
;
464 int i_inline_align
= -1;
465 p_spu_sys
->region
.p_segments
= ParseSubtitles( &i_inline_align
, psz_subtitle
);
466 free( psz_subtitle
);
467 if( p_sys
->i_align
>= 0 ) /* bottom ; left, right or centered */
469 p_spu_sys
->region
.align
= SUBPICTURE_ALIGN_BOTTOM
| p_sys
->i_align
;
470 p_spu_sys
->region
.inner_align
= p_sys
->i_align
;
472 else if( i_inline_align
>= 0 )
474 p_spu_sys
->region
.align
= i_inline_align
;
475 p_spu_sys
->region
.inner_align
= i_inline_align
;
477 else /* default, bottom ; centered */
479 p_spu_sys
->region
.align
= SUBPICTURE_ALIGN_BOTTOM
;
480 p_spu_sys
->region
.inner_align
= 0;
486 static bool AppendCharacter( text_segment_t
* p_segment
, char c
)
489 if ( asprintf( &tmp
, "%s%c", p_segment
->psz_text
? p_segment
->psz_text
: "", c
) < 0 )
491 free( p_segment
->psz_text
);
492 p_segment
->psz_text
= tmp
;
496 static bool AppendString( text_segment_t
* p_segment
, const char* psz_str
)
499 if ( asprintf( &tmp
, "%s%s", p_segment
->psz_text
? p_segment
->psz_text
: "", psz_str
) < 0 )
501 free( p_segment
->psz_text
);
502 p_segment
->psz_text
= tmp
;
506 static char* ConsumeAttribute( const char** ppsz_subtitle
, char** ppsz_attribute_value
)
508 const char* psz_subtitle
= *ppsz_subtitle
;
509 char* psz_attribute_name
;
510 *ppsz_attribute_value
= NULL
;
512 while (*psz_subtitle
== ' ')
518 while ( *psz_subtitle
&& isalpha( *psz_subtitle
) )
523 if ( !*psz_subtitle
|| attr_len
== 0 )
525 psz_attribute_name
= malloc( attr_len
+ 1 );
526 if ( unlikely( !psz_attribute_name
) )
528 strncpy( psz_attribute_name
, psz_subtitle
- attr_len
, attr_len
);
529 psz_attribute_name
[attr_len
] = 0;
531 // Skip over to the attribute value
532 while ( *psz_subtitle
&& *psz_subtitle
!= '=' )
534 if ( !*psz_subtitle
)
536 *ppsz_subtitle
= psz_subtitle
;
537 return psz_attribute_name
;
542 // Aknoledge the delimiter if any
543 while ( *psz_subtitle
&& isspace( *psz_subtitle
) )
546 if ( *psz_subtitle
== '\'' || *psz_subtitle
== '"' )
548 // Save the delimiter and skip it
549 delimiter
= *psz_subtitle
;
555 // Skip spaces, just in case
556 while ( *psz_subtitle
&& isspace( *psz_subtitle
) )
560 while ( *psz_subtitle
&& ( ( delimiter
!= 0 && *psz_subtitle
!= delimiter
) ||
561 ( delimiter
== 0 && ( !isspace(*psz_subtitle
) && *psz_subtitle
!= '>' ) ) ) )
568 *ppsz_subtitle
= psz_subtitle
;
569 return psz_attribute_name
;
571 if ( unlikely( !( *ppsz_attribute_value
= malloc( attr_len
+ 1 ) ) ) )
573 free( psz_attribute_name
);
576 strncpy( *ppsz_attribute_value
, psz_subtitle
- attr_len
, attr_len
);
577 (*ppsz_attribute_value
)[attr_len
] = 0;
578 // Finally, skip over the final delimiter
579 if (delimiter
!= 0 && *psz_subtitle
)
581 *ppsz_subtitle
= psz_subtitle
;
582 return psz_attribute_name
;
585 // Returns the next tag and consume the string up to after the tag name, or
586 // returns NULL and doesn't advance if the angle bracket was not a tag opening
587 // For instance, if psz_subtitle == "<some_tag attribute=value>"
588 // GetTag will return "some_tag", and will advance up to the first 'a' in "attribute"
589 // The returned value must be freed.
590 static char* GetTag( const char** ppsz_subtitle
, bool b_closing
)
592 const char* psz_subtitle
= *ppsz_subtitle
;
593 if ( *psz_subtitle
!= '<' )
597 if ( b_closing
&& *psz_subtitle
== '/' )
599 // Skip potential spaces
600 while ( *psz_subtitle
== ' ' )
602 // Now we need to verify if what comes next is a valid tag:
603 if ( !isalpha( *psz_subtitle
) )
606 while ( isalnum( psz_subtitle
[tag_size
] ) || psz_subtitle
[tag_size
] == '_' )
608 char* psz_tagname
= vlc_alloc( tag_size
+ 1, sizeof( *psz_tagname
) );
609 if ( unlikely( !psz_tagname
) )
611 strncpy( psz_tagname
, psz_subtitle
, tag_size
);
612 psz_tagname
[tag_size
] = 0;
613 psz_subtitle
+= tag_size
;
614 *ppsz_subtitle
= psz_subtitle
;
618 static bool IsClosed( const char* psz_subtitle
, const char* psz_tagname
)
620 const char* psz_tagpos
= strcasestr( psz_subtitle
, psz_tagname
);
623 // Search for '</' and '>' immediatly before & after (minding the potential spaces)
624 const char* psz_endtag
= psz_tagpos
+ strlen( psz_tagname
);
625 while ( *psz_endtag
== ' ' )
627 if ( *psz_endtag
!= '>' )
629 // Skip back before the tag itself
631 while ( *psz_tagpos
== ' ' && psz_tagpos
> psz_subtitle
)
633 if ( *psz_tagpos
-- != '/' )
635 if ( *psz_tagpos
!= '<' )
640 typedef struct tag_stack tag_stack_t
;
647 static void AppendTag( tag_stack_t
**pp_stack
, char* psz_tagname
)
649 tag_stack_t
* p_elem
= malloc( sizeof( *p_elem
) );
650 if ( unlikely( !p_elem
) )
652 p_elem
->p_next
= *pp_stack
;
653 p_elem
->psz_tagname
= psz_tagname
;
657 static bool HasTag( tag_stack_t
**pp_stack
, const char* psz_tagname
)
659 tag_stack_t
*p_prev
= NULL
;
660 for ( tag_stack_t
* p_current
= *pp_stack
; p_current
; p_current
= p_current
->p_next
)
662 if ( !strcasecmp( psz_tagname
, p_current
->psz_tagname
) )
664 if ( p_current
== *pp_stack
)
666 *pp_stack
= p_current
->p_next
;
670 p_prev
->p_next
= p_current
->p_next
;
672 free( p_current
->psz_tagname
);
682 * mini style stack implementation
684 typedef struct style_stack style_stack_t
;
687 text_style_t
* p_style
;
688 style_stack_t
* p_next
;
691 static text_style_t
* DuplicateAndPushStyle(style_stack_t
** pp_stack
)
693 text_style_t
* p_dup
= ( *pp_stack
) ? text_style_Duplicate( (*pp_stack
)->p_style
) : text_style_Create( STYLE_NO_DEFAULTS
);
694 if ( unlikely( !p_dup
) )
696 style_stack_t
* p_entry
= malloc( sizeof( *p_entry
) );
697 if ( unlikely( !p_entry
) )
699 text_style_Delete( p_dup
);
702 // Give the style ownership to the segment.
703 p_entry
->p_style
= p_dup
;
704 p_entry
->p_next
= *pp_stack
;
709 static void PopStyle(style_stack_t
** pp_stack
)
711 style_stack_t
* p_old
= *pp_stack
;
714 *pp_stack
= p_old
->p_next
;
715 // Don't free the style, it is now owned by the text_segment_t
719 static text_segment_t
* NewTextSegmentPushStyle( text_segment_t
* p_segment
, style_stack_t
** pp_stack
)
721 text_segment_t
* p_new
= text_segment_New( NULL
);
722 if ( unlikely( p_new
== NULL
) )
724 text_style_t
* p_style
= DuplicateAndPushStyle( pp_stack
);
725 p_new
->style
= p_style
;
726 p_segment
->p_next
= p_new
;
730 static text_segment_t
* NewTextSegmentPopStyle( text_segment_t
* p_segment
, style_stack_t
** pp_stack
)
732 text_segment_t
* p_new
= text_segment_New( NULL
);
733 if ( unlikely( p_new
== NULL
) )
735 // We shouldn't have an empty stack since this happens when closing a tag,
736 // but better be safe than sorry if (/when) we encounter a broken subtitle file.
737 PopStyle( pp_stack
);
738 text_style_t
* p_dup
= ( *pp_stack
) ? text_style_Duplicate( (*pp_stack
)->p_style
) : text_style_Create( STYLE_NO_DEFAULTS
);
739 p_new
->style
= p_dup
;
740 p_segment
->p_next
= p_new
;
744 static text_segment_t
* ParseSubtitles( int *pi_align
, const char *psz_subtitle
)
746 text_segment_t
* p_segment
;
747 text_segment_t
* p_first_segment
;
748 style_stack_t
* p_stack
= NULL
;
749 tag_stack_t
* p_tag_stack
= NULL
;
751 //FIXME: Remove initial allocation? Might make the below code more complicated
752 p_first_segment
= p_segment
= text_segment_New( "" );
757 while( *psz_subtitle
)
759 /* HTML extensions */
760 if( *psz_subtitle
== '<' )
762 char *psz_tagname
= GetTag( &psz_subtitle
, false );
763 if ( psz_tagname
!= NULL
)
765 if( !strcasecmp( psz_tagname
, "br" ) )
767 if ( !AppendCharacter( p_segment
, '\n' ) )
773 else if( !strcasecmp( psz_tagname
, "b" ) )
775 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
776 p_segment
->style
->i_style_flags
|= STYLE_BOLD
;
777 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
779 else if( !strcasecmp( psz_tagname
, "i" ) )
781 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
782 p_segment
->style
->i_style_flags
|= STYLE_ITALIC
;
783 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
785 else if( !strcasecmp( psz_tagname
, "u" ) )
787 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
788 p_segment
->style
->i_style_flags
|= STYLE_UNDERLINE
;
789 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
791 else if( !strcasecmp( psz_tagname
, "s" ) )
793 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
794 p_segment
->style
->i_style_flags
|= STYLE_STRIKEOUT
;
795 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
797 else if( !strcasecmp( psz_tagname
, "font" ) )
799 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
801 char* psz_attribute_name
;
802 char* psz_attribute_value
;
804 while( ( psz_attribute_name
= ConsumeAttribute( &psz_subtitle
, &psz_attribute_value
) ) )
806 if ( !psz_attribute_value
)
808 free( psz_attribute_name
);
811 if ( !strcasecmp( psz_attribute_name
, "face" ) )
813 free(p_segment
->style
->psz_fontname
);
814 p_segment
->style
->psz_fontname
= psz_attribute_value
;
815 // We don't want to free the attribute value since it has become our fontname
816 psz_attribute_value
= NULL
;
818 else if ( !strcasecmp( psz_attribute_name
, "family" ) )
820 free(p_segment
->style
->psz_monofontname
);
821 p_segment
->style
->psz_monofontname
= psz_attribute_value
;
822 psz_attribute_value
= NULL
;
824 else if ( !strcasecmp( psz_attribute_name
, "size" ) )
826 int size
= atoi( psz_attribute_value
);
829 p_segment
->style
->i_font_size
= size
;
830 p_segment
->style
->f_font_relsize
= STYLE_DEFAULT_REL_FONT_SIZE
*
831 STYLE_DEFAULT_FONT_SIZE
/ p_segment
->style
->i_font_size
;
834 else if ( !strcasecmp( psz_attribute_name
, "color" ) )
836 p_segment
->style
->i_font_color
= vlc_html_color( psz_attribute_value
, NULL
);
837 p_segment
->style
->i_features
|= STYLE_HAS_FONT_COLOR
;
839 else if ( !strcasecmp( psz_attribute_name
, "outline-color" ) )
841 p_segment
->style
->i_outline_color
= vlc_html_color( psz_attribute_value
, NULL
);
842 p_segment
->style
->i_features
|= STYLE_HAS_OUTLINE_COLOR
;
844 else if ( !strcasecmp( psz_attribute_name
, "shadow-color" ) )
846 p_segment
->style
->i_shadow_color
= vlc_html_color( psz_attribute_value
, NULL
);
847 p_segment
->style
->i_features
|= STYLE_HAS_SHADOW_COLOR
;
849 else if ( !strcasecmp( psz_attribute_name
, "outline-level" ) )
851 p_segment
->style
->i_outline_width
= atoi( psz_attribute_value
);
853 else if ( !strcasecmp( psz_attribute_name
, "shadow-level" ) )
855 p_segment
->style
->i_shadow_width
= atoi( psz_attribute_value
);
857 else if ( !strcasecmp( psz_attribute_name
, "back-color" ) )
859 p_segment
->style
->i_background_color
= vlc_html_color( psz_attribute_value
, NULL
);
860 p_segment
->style
->i_features
|= STYLE_HAS_BACKGROUND_COLOR
;
862 else if ( !strcasecmp( psz_attribute_name
, "alpha" ) )
864 p_segment
->style
->i_font_alpha
= atoi( psz_attribute_value
);
865 p_segment
->style
->i_features
|= STYLE_HAS_FONT_ALPHA
;
868 free( psz_attribute_name
);
869 free( psz_attribute_value
);
874 // This is an unknown tag. We need to hide it if it's properly closed, and display it otherwise
875 if ( !IsClosed( psz_subtitle
, psz_tagname
) )
877 AppendCharacter( p_segment
, '<' );
878 AppendString( p_segment
, psz_tagname
);
879 AppendCharacter( p_segment
, '>' );
883 AppendTag( &p_tag_stack
, psz_tagname
);
884 // We don't want to free the tagname now, it will be freed when the tag
885 // gets poped from the stack.
888 // In any case, fall through and skip to the closing tag.
890 // Skip potential spaces & end tag
891 while ( *psz_subtitle
&& *psz_subtitle
!= '>' )
893 if ( *psz_subtitle
== '>' )
898 else if( !strncmp( psz_subtitle
, "</", 2 ))
900 char* psz_closetagname
= GetTag( &psz_subtitle
, true );
901 if ( psz_closetagname
!= NULL
)
903 if ( !strcasecmp( psz_closetagname
, "b" ) ||
904 !strcasecmp( psz_closetagname
, "i" ) ||
905 !strcasecmp( psz_closetagname
, "u" ) ||
906 !strcasecmp( psz_closetagname
, "s" ) ||
907 !strcasecmp( psz_closetagname
, "font" ) )
909 // A closing tag for one of the tags we handle, meaning
910 // we pushed a style onto the stack earlier
911 p_segment
= NewTextSegmentPopStyle( p_segment
, &p_stack
);
915 // Unknown closing tag. If it is closing an unknown tag, ignore it. Otherwise, display it
916 if ( !HasTag( &p_tag_stack
, psz_closetagname
) )
918 AppendString( p_segment
, "</" );
919 AppendString( p_segment
, psz_closetagname
);
920 AppendCharacter( p_segment
, '>' );
923 while ( *psz_subtitle
== ' ' )
925 if ( *psz_subtitle
== '>' )
927 free( psz_closetagname
);
932 * This doesn't appear to be a valid tag closing syntax.
933 * Simply append the text
935 AppendString( p_segment
, "</" );
941 /* We have an unknown tag, just append it, and move on.
942 * The rest of the string won't be recognized as a tag, and
943 * we will ignore unknown closing tag
945 AppendCharacter( p_segment
, '<' );
950 else if( psz_subtitle
[0] == '{' && psz_subtitle
[1] == '\\' &&
951 strchr( psz_subtitle
, '}' ) )
953 /* Check for forced alignment */
955 !strncmp( psz_subtitle
, "{\\an", 4 ) && psz_subtitle
[4] >= '1' && psz_subtitle
[4] <= '9' && psz_subtitle
[5] == '}' )
957 static const int pi_vertical
[3] = { SUBPICTURE_ALIGN_BOTTOM
, 0, SUBPICTURE_ALIGN_TOP
};
958 static const int pi_horizontal
[3] = { SUBPICTURE_ALIGN_LEFT
, 0, SUBPICTURE_ALIGN_RIGHT
};
959 const int i_id
= psz_subtitle
[4] - '1';
961 *pi_align
= pi_vertical
[i_id
/3] | pi_horizontal
[i_id
%3];
963 /* TODO fr -> rotation */
965 /* Hide {\stupidity} */
966 psz_subtitle
= strchr( psz_subtitle
, '}' ) + 1;
968 /* MicroDVD extensions */
970 * - Currently, we don't do difference between X and x, and we should:
971 * Capital Letters applies to the whole text and not one line
972 * - We don't support Position and Coordinates
973 * - We don't support the DEFAULT flag (HEADER)
976 else if( psz_subtitle
[0] == '{' && psz_subtitle
[1] != 0 &&
977 psz_subtitle
[2] == ':' && strchr( &psz_subtitle
[2], '}' ) )
979 const char *psz_tag_end
= strchr( &psz_subtitle
[2], '}' );
980 size_t i_len
= psz_tag_end
- &psz_subtitle
[3];
982 if( psz_subtitle
[1] == 'Y' || psz_subtitle
[1] == 'y' )
984 if( psz_subtitle
[3] == 'i' )
986 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
987 p_segment
->style
->i_style_flags
|= STYLE_ITALIC
;
988 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
991 if( psz_subtitle
[3] == 'b' )
993 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
994 p_segment
->style
->i_style_flags
|= STYLE_BOLD
;
995 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
998 if( psz_subtitle
[3] == 'u' )
1000 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
1001 p_segment
->style
->i_style_flags
|= STYLE_UNDERLINE
;
1002 p_segment
->style
->i_features
|= STYLE_HAS_FLAGS
;
1006 else if( (psz_subtitle
[1] == 'C' || psz_subtitle
[1] == 'c' )
1007 && psz_subtitle
[3] == '$' && i_len
>= 7 )
1009 /* Yes, they use BBGGRR, instead of RRGGBB */
1011 psz_color
[0] = psz_subtitle
[8]; psz_color
[1] = psz_subtitle
[9];
1012 psz_color
[2] = psz_subtitle
[6]; psz_color
[3] = psz_subtitle
[7];
1013 psz_color
[4] = psz_subtitle
[4]; psz_color
[5] = psz_subtitle
[5];
1014 psz_color
[6] = '\0';
1015 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
1016 p_segment
->style
->i_font_color
= vlc_html_color( psz_color
, NULL
);
1017 p_segment
->style
->i_features
|= STYLE_HAS_FONT_COLOR
;
1019 else if( psz_subtitle
[1] == 'F' || psz_subtitle
[1] == 'f' )
1021 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
1022 free(p_segment
->style
->psz_fontname
);
1023 p_segment
->style
->psz_fontname
= strndup( &psz_subtitle
[3], i_len
);
1025 else if( psz_subtitle
[1] == 'S' || psz_subtitle
[1] == 's' )
1027 int size
= atoi( &psz_subtitle
[3] );
1030 p_segment
= NewTextSegmentPushStyle( p_segment
, &p_stack
);
1031 p_segment
->style
->i_font_size
= size
;
1032 p_segment
->style
->f_font_relsize
= STYLE_DEFAULT_REL_FONT_SIZE
*
1033 STYLE_DEFAULT_FONT_SIZE
/ p_segment
->style
->i_font_size
;
1037 /* Currently unsupported since we don't have access to the i_align flag here
1038 else if( psz_subtitle[1] == 'P' )
1040 if( psz_subtitle[3] == "1" )
1041 i_align = SUBPICTURE_ALIGN_TOP;
1042 else if( psz_subtitle[3] == "0" )
1043 i_align = SUBPICTURE_ALIGN_BOTTOM;
1045 // Hide other {x:y} atrocities, notably {o:x}
1046 psz_subtitle
= psz_tag_end
+ 1;
1050 if( *psz_subtitle
== '\n' || !strncasecmp( psz_subtitle
, "\\n", 2 ) )
1052 if ( !AppendCharacter( p_segment
, '\n' ) )
1054 if ( *psz_subtitle
== '\n' )
1059 else if( !strncasecmp( psz_subtitle
, "\\h", 2 ) )
1061 if ( !AppendString( p_segment
, "\xC2\xA0" ) )
1067 //FIXME: Highly inneficient
1068 AppendCharacter( p_segment
, *psz_subtitle
);
1074 PopStyle( &p_stack
);
1075 while ( p_tag_stack
)
1077 tag_stack_t
*p_tag
= p_tag_stack
;
1078 p_tag_stack
= p_tag_stack
->p_next
;
1079 free( p_tag
->psz_tagname
);
1083 return p_first_segment
;
1086 text_segment_ChainDelete( p_first_segment
);