contrib: ncurses: explicitly set PKG_CONFIG_LIBDIR
[vlc.git] / modules / codec / subsusf.c
blob0952e30b4d2be9d0e2b18232df362188ed1c2161
1 /*****************************************************************************
2 * subsusf.c : USF subtitles decoder
3 *****************************************************************************
4 * Copyright (C) 2000-2006 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Bernie Purcell <bitmap@videolan.org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26 #include <assert.h>
28 #include <vlc_common.h>
29 #include <vlc_plugin.h>
30 #include <vlc_modules.h>
31 #include <vlc_codec.h>
32 #include <vlc_input.h>
33 #include <vlc_charset.h>
34 #include <vlc_image.h>
35 #include <vlc_xml.h>
36 #include <vlc_stream.h>
38 /*****************************************************************************
39 * Module descriptor.
40 *****************************************************************************/
41 static int OpenDecoder ( vlc_object_t * );
42 static void CloseDecoder ( vlc_object_t * );
44 vlc_module_begin ()
45 set_capability( "decoder", 40 )
46 set_shortname( N_("USFSubs"))
47 set_description( N_("USF subtitles decoder") )
48 set_callbacks( OpenDecoder, CloseDecoder )
49 set_category( CAT_INPUT )
50 set_subcategory( SUBCAT_INPUT_SCODEC )
51 /* We inherit subsdec-align and subsdec-formatted from subsdec.c */
52 vlc_module_end ()
55 /*****************************************************************************
56 * Local prototypes
57 *****************************************************************************/
58 enum
60 ATTRIBUTE_ALIGNMENT = (1 << 0),
61 ATTRIBUTE_X = (1 << 1),
62 ATTRIBUTE_X_PERCENT = (1 << 2),
63 ATTRIBUTE_Y = (1 << 3),
64 ATTRIBUTE_Y_PERCENT = (1 << 4),
67 typedef struct
69 char *psz_filename;
70 picture_t *p_pic;
71 } image_attach_t;
73 typedef struct
75 char * psz_stylename; /* The name of the style, no comma's allowed */
76 text_style_t font_style;
77 int i_align;
78 int i_margin_h;
79 int i_margin_v;
80 int i_margin_percent_h;
81 int i_margin_percent_v;
82 } ssa_style_t;
84 struct decoder_sys_t
86 int i_original_height;
87 int i_original_width;
88 int i_align; /* Subtitles alignment on the vout */
90 ssa_style_t **pp_ssa_styles;
91 int i_ssa_styles;
93 image_attach_t **pp_images;
94 int i_images;
97 static subpicture_t *DecodeBlock ( decoder_t *, block_t ** );
98 static char *CreatePlainText( char * );
99 static int ParseImageAttachments( decoder_t *p_dec );
101 static subpicture_t *ParseText ( decoder_t *, block_t * );
102 static void ParseUSFHeader( decoder_t * );
103 static subpicture_region_t *ParseUSFString( decoder_t *, char * );
104 static subpicture_region_t *LoadEmbeddedImage( decoder_t *p_dec, const char *psz_filename, int i_transparent_color );
106 /*****************************************************************************
107 * OpenDecoder: probe the decoder and return score
108 *****************************************************************************
109 * Tries to launch a decoder and return score so that the interface is able
110 * to chose.
111 *****************************************************************************/
112 static int OpenDecoder( vlc_object_t *p_this )
114 decoder_t *p_dec = (decoder_t*)p_this;
115 decoder_sys_t *p_sys;
117 if( p_dec->fmt_in.i_codec != VLC_CODEC_USF )
118 return VLC_EGENERIC;
120 /* Allocate the memory needed to store the decoder's structure */
121 if( ( p_dec->p_sys = p_sys = calloc(1, sizeof(decoder_sys_t)) ) == NULL )
122 return VLC_ENOMEM;
124 p_dec->pf_decode_sub = DecodeBlock;
125 p_dec->fmt_out.i_cat = SPU_ES;
126 p_dec->fmt_out.i_codec = 0;
128 /* init of p_sys */
129 p_sys->i_align = 0;
130 p_sys->i_original_height = 0;
131 p_sys->i_original_width = 0;
132 TAB_INIT( p_sys->i_ssa_styles, p_sys->pp_ssa_styles );
133 TAB_INIT( p_sys->i_images, p_sys->pp_images );
135 /* USF subtitles are mandated to be UTF-8, so don't need vlc_iconv */
137 p_sys->i_align = var_CreateGetInteger( p_dec, "subsdec-align" );
139 ParseImageAttachments( p_dec );
141 if( var_CreateGetBool( p_dec, "subsdec-formatted" ) )
143 if( p_dec->fmt_in.i_extra > 0 )
144 ParseUSFHeader( p_dec );
147 return VLC_SUCCESS;
150 /****************************************************************************
151 * DecodeBlock: the whole thing
152 ****************************************************************************
153 * This function must be fed with complete subtitles units.
154 ****************************************************************************/
155 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
157 subpicture_t *p_spu;
158 block_t *p_block;
160 if( !pp_block || *pp_block == NULL )
161 return NULL;
163 p_block = *pp_block;
165 p_spu = ParseText( p_dec, p_block );
167 block_Release( p_block );
168 *pp_block = NULL;
170 return p_spu;
173 /*****************************************************************************
174 * CloseDecoder: clean up the decoder
175 *****************************************************************************/
176 static void CloseDecoder( vlc_object_t *p_this )
178 decoder_t *p_dec = (decoder_t *)p_this;
179 decoder_sys_t *p_sys = p_dec->p_sys;
181 if( p_sys->pp_ssa_styles )
183 int i;
184 for( i = 0; i < p_sys->i_ssa_styles; i++ )
186 if( !p_sys->pp_ssa_styles[i] )
187 continue;
189 free( p_sys->pp_ssa_styles[i]->psz_stylename );
190 //FIXME: Make font_style a pointer and use text_style_* functions
191 free( p_sys->pp_ssa_styles[i]->font_style.psz_fontname );
192 free( p_sys->pp_ssa_styles[i] );
194 TAB_CLEAN( p_sys->i_ssa_styles, p_sys->pp_ssa_styles );
196 if( p_sys->pp_images )
198 int i;
199 for( i = 0; i < p_sys->i_images; i++ )
201 if( !p_sys->pp_images[i] )
202 continue;
204 if( p_sys->pp_images[i]->p_pic )
205 picture_Release( p_sys->pp_images[i]->p_pic );
206 free( p_sys->pp_images[i]->psz_filename );
208 free( p_sys->pp_images[i] );
210 TAB_CLEAN( p_sys->i_images, p_sys->pp_images );
213 free( p_sys );
216 /*****************************************************************************
217 * ParseText: parse an text subtitle packet and send it to the video output
218 *****************************************************************************/
219 static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
221 decoder_sys_t *p_sys = p_dec->p_sys;
222 subpicture_t *p_spu = NULL;
223 char *psz_subtitle = NULL;
225 /* We cannot display a subpicture with no date */
226 if( p_block->i_pts <= VLC_TS_INVALID )
228 msg_Warn( p_dec, "subtitle without a date" );
229 return NULL;
232 /* Check validity of packet data */
233 /* An "empty" line containing only \0 can be used to force
234 and ephemer picture from the screen */
235 if( p_block->i_buffer < 1 )
237 msg_Warn( p_dec, "no subtitle data" );
238 return NULL;
241 /* Should be resiliant against bad subtitles */
242 psz_subtitle = strndup( (const char *)p_block->p_buffer,
243 p_block->i_buffer );
244 if( psz_subtitle == NULL )
245 return NULL;
247 /* USF Subtitles are mandated to be UTF-8 -- make sure it is */
248 if (EnsureUTF8( psz_subtitle ) == NULL)
250 msg_Err( p_dec, "USF subtitles must be in UTF-8 format.\n"
251 "This stream contains USF subtitles which aren't." );
254 /* Create the subpicture unit */
255 p_spu = decoder_NewSubpicture( p_dec, NULL );
256 if( !p_spu )
258 msg_Warn( p_dec, "can't get spu buffer" );
259 free( psz_subtitle );
260 return NULL;
263 /* Decode USF strings */
264 p_spu->p_region = ParseUSFString( p_dec, psz_subtitle );
266 p_spu->i_start = p_block->i_pts;
267 p_spu->i_stop = p_block->i_pts + p_block->i_length;
268 p_spu->b_ephemer = (p_block->i_length == 0);
269 p_spu->b_absolute = false;
270 p_spu->i_original_picture_width = p_sys->i_original_width;
271 p_spu->i_original_picture_height = p_sys->i_original_height;
273 free( psz_subtitle );
275 return p_spu;
278 static char *GrabAttributeValue( const char *psz_attribute,
279 const char *psz_tag_start )
281 if( psz_attribute && psz_tag_start )
283 char *psz_tag_end = strchr( psz_tag_start, '>' );
284 char *psz_found = strcasestr( psz_tag_start, psz_attribute );
286 if( psz_found )
288 psz_found += strlen( psz_attribute );
290 if(( *(psz_found++) == '=' ) &&
291 ( *(psz_found++) == '\"' ))
293 if( psz_found < psz_tag_end )
295 int i_len = strcspn( psz_found, "\"" );
296 return strndup( psz_found, i_len );
301 return NULL;
304 static ssa_style_t *ParseStyle( decoder_sys_t *p_sys, char *psz_subtitle )
306 ssa_style_t *p_ssa_style = NULL;
307 char *psz_style = GrabAttributeValue( "style", psz_subtitle );
309 if( psz_style )
311 int i;
313 for( i = 0; i < p_sys->i_ssa_styles; i++ )
315 if( !strcmp( p_sys->pp_ssa_styles[i]->psz_stylename, psz_style ) )
316 p_ssa_style = p_sys->pp_ssa_styles[i];
318 free( psz_style );
320 return p_ssa_style;
323 static int ParsePositionAttributeList( char *psz_subtitle, int *i_align,
324 int *i_x, int *i_y )
326 int i_mask = 0;
328 char *psz_align = GrabAttributeValue( "alignment", psz_subtitle );
329 char *psz_margin_x = GrabAttributeValue( "horizontal-margin", psz_subtitle );
330 char *psz_margin_y = GrabAttributeValue( "vertical-margin", psz_subtitle );
331 /* -- UNSUPPORTED
332 char *psz_relative = GrabAttributeValue( "relative-to", psz_subtitle );
333 char *psz_rotate_x = GrabAttributeValue( "rotate-x", psz_subtitle );
334 char *psz_rotate_y = GrabAttributeValue( "rotate-y", psz_subtitle );
335 char *psz_rotate_z = GrabAttributeValue( "rotate-z", psz_subtitle );
338 *i_align = SUBPICTURE_ALIGN_BOTTOM;
339 *i_x = 0;
340 *i_y = 0;
342 if( psz_align )
344 if( !strcasecmp( "TopLeft", psz_align ) )
345 *i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
346 else if( !strcasecmp( "TopCenter", psz_align ) )
347 *i_align = SUBPICTURE_ALIGN_TOP;
348 else if( !strcasecmp( "TopRight", psz_align ) )
349 *i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_RIGHT;
350 else if( !strcasecmp( "MiddleLeft", psz_align ) )
351 *i_align = SUBPICTURE_ALIGN_LEFT;
352 else if( !strcasecmp( "MiddleCenter", psz_align ) )
353 *i_align = 0;
354 else if( !strcasecmp( "MiddleRight", psz_align ) )
355 *i_align = SUBPICTURE_ALIGN_RIGHT;
356 else if( !strcasecmp( "BottomLeft", psz_align ) )
357 *i_align = SUBPICTURE_ALIGN_BOTTOM | SUBPICTURE_ALIGN_LEFT;
358 else if( !strcasecmp( "BottomCenter", psz_align ) )
359 *i_align = SUBPICTURE_ALIGN_BOTTOM;
360 else if( !strcasecmp( "BottomRight", psz_align ) )
361 *i_align = SUBPICTURE_ALIGN_BOTTOM | SUBPICTURE_ALIGN_RIGHT;
363 i_mask |= ATTRIBUTE_ALIGNMENT;
364 free( psz_align );
366 if( psz_margin_x )
368 *i_x = atoi( psz_margin_x );
369 if( strchr( psz_margin_x, '%' ) )
370 i_mask |= ATTRIBUTE_X_PERCENT;
371 else
372 i_mask |= ATTRIBUTE_X;
374 free( psz_margin_x );
376 if( psz_margin_y )
378 *i_y = atoi( psz_margin_y );
379 if( strchr( psz_margin_y, '%' ) )
380 i_mask |= ATTRIBUTE_Y_PERCENT;
381 else
382 i_mask |= ATTRIBUTE_Y;
384 free( psz_margin_y );
386 return i_mask;
389 static void SetupPositions( subpicture_region_t *p_region, char *psz_subtitle )
391 int i_mask = 0;
392 int i_align;
393 int i_x, i_y;
395 i_mask = ParsePositionAttributeList( psz_subtitle, &i_align, &i_x, &i_y );
397 if( i_mask & ATTRIBUTE_ALIGNMENT )
398 p_region->i_align = i_align;
400 /* TODO: Setup % based offsets properly, without adversely affecting
401 * everything else in vlc. Will address with separate patch, to
402 * prevent this one being any more complicated.
404 if( i_mask & ATTRIBUTE_X )
405 p_region->i_x = i_x;
406 else if( i_mask & ATTRIBUTE_X_PERCENT )
407 p_region->i_x = 0;
409 if( i_mask & ATTRIBUTE_Y )
410 p_region->i_y = i_y;
411 else if( i_mask & ATTRIBUTE_Y_PERCENT )
412 p_region->i_y = 0;
415 static subpicture_region_t *CreateTextRegion( decoder_t *p_dec,
416 char *psz_subtitle,
417 int i_len,
418 int i_sys_align )
420 decoder_sys_t *p_sys = p_dec->p_sys;
421 subpicture_region_t *p_text_region;
422 video_format_t fmt;
424 /* Create a new subpicture region */
425 memset( &fmt, 0, sizeof(video_format_t) );
426 fmt.i_chroma = VLC_CODEC_TEXT;
427 fmt.i_width = fmt.i_height = 0;
428 fmt.i_x_offset = fmt.i_y_offset = 0;
429 p_text_region = subpicture_region_New( &fmt );
431 if( p_text_region != NULL )
433 ssa_style_t *p_ssa_style = NULL;
435 p_text_region->psz_text = NULL;
436 p_text_region->psz_html = strndup( psz_subtitle, i_len );
437 if( ! p_text_region->psz_html )
439 subpicture_region_Delete( p_text_region );
440 return NULL;
443 p_ssa_style = ParseStyle( p_sys, p_text_region->psz_html );
444 if( !p_ssa_style )
446 int i;
448 for( i = 0; i < p_sys->i_ssa_styles; i++ )
450 if( !strcasecmp( p_sys->pp_ssa_styles[i]->psz_stylename, "Default" ) )
451 p_ssa_style = p_sys->pp_ssa_styles[i];
455 if( p_ssa_style )
457 msg_Dbg( p_dec, "style is: %s", p_ssa_style->psz_stylename );
459 p_text_region->p_style = text_style_Duplicate( &p_ssa_style->font_style );
460 p_text_region->i_align = p_ssa_style->i_align;
462 /* TODO: Setup % based offsets properly, without adversely affecting
463 * everything else in vlc. Will address with separate patch,
464 * to prevent this one being any more complicated.
466 * p_ssa_style->i_margin_percent_h;
467 * p_ssa_style->i_margin_percent_v;
469 p_text_region->i_x = p_ssa_style->i_margin_h;
470 p_text_region->i_y = p_ssa_style->i_margin_v;
473 else
475 p_text_region->i_align = SUBPICTURE_ALIGN_BOTTOM | i_sys_align;
476 p_text_region->i_x = i_sys_align ? 20 : 0;
477 p_text_region->i_y = 10;
479 /* Look for position arguments which may override the style-based
480 * defaults.
482 SetupPositions( p_text_region, psz_subtitle );
484 p_text_region->p_next = NULL;
486 return p_text_region;
489 static int ParseImageAttachments( decoder_t *p_dec )
491 decoder_sys_t *p_sys = p_dec->p_sys;
492 input_attachment_t **pp_attachments;
493 int i_attachments_cnt;
494 int k = 0;
496 if( VLC_SUCCESS != decoder_GetInputAttachments( p_dec, &pp_attachments, &i_attachments_cnt ))
497 return VLC_EGENERIC;
499 for( k = 0; k < i_attachments_cnt; k++ )
501 input_attachment_t *p_attach = pp_attachments[k];
503 vlc_fourcc_t type = image_Mime2Fourcc( p_attach->psz_mime );
505 if( ( type != 0 ) &&
506 ( p_attach->i_data > 0 ) &&
507 ( p_attach->p_data != NULL ) )
509 picture_t *p_pic = NULL;
510 image_handler_t *p_image;
512 p_image = image_HandlerCreate( p_dec );
513 if( p_image != NULL )
515 block_t *p_block;
517 p_block = block_Alloc( p_attach->i_data );
519 if( p_block != NULL )
521 video_format_t fmt_in;
522 video_format_t fmt_out;
524 memcpy( p_block->p_buffer, p_attach->p_data, p_attach->i_data );
526 memset( &fmt_in, 0, sizeof( video_format_t));
527 memset( &fmt_out, 0, sizeof( video_format_t));
529 fmt_in.i_chroma = type;
530 fmt_out.i_chroma = VLC_CODEC_YUVA;
532 /* Find a suitable decoder module */
533 if( module_exists( "sdl_image" ) )
535 /* ffmpeg thinks it can handle bmp properly but it can't (at least
536 * not all of them), so use sdl_image if it is available */
538 var_Create( p_dec, "codec", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
539 var_SetString( p_dec, "codec", "sdl_image" );
542 p_pic = image_Read( p_image, p_block, &fmt_in, &fmt_out );
543 var_Destroy( p_dec, "codec" );
546 image_HandlerDelete( p_image );
548 if( p_pic )
550 image_attach_t *p_picture = malloc( sizeof(image_attach_t) );
552 if( p_picture )
554 p_picture->psz_filename = strdup( p_attach->psz_name );
555 p_picture->p_pic = p_pic;
557 TAB_APPEND( p_sys->i_images, p_sys->pp_images, p_picture );
561 vlc_input_attachment_Delete( pp_attachments[ k ] );
563 free( pp_attachments );
565 return VLC_SUCCESS;
568 static void ParseUSFHeaderTags( decoder_t *p_dec, xml_reader_t *p_xml_reader )
570 decoder_sys_t *p_sys = p_dec->p_sys;
571 const char *node;
572 ssa_style_t *p_ssa_style = NULL;
573 int i_style_level = 0;
574 int i_metadata_level = 0;
575 int type;
577 while( (type = xml_ReaderNextNode( p_xml_reader, &node )) > 0 )
579 switch( type )
581 case XML_READER_ENDELEM:
582 switch (i_style_level)
584 case 0:
585 if( !strcasecmp( "metadata", node ) && (i_metadata_level == 1) )
586 i_metadata_level--;
587 break;
588 case 1:
589 if( !strcasecmp( "styles", node ) )
590 i_style_level--;
591 break;
592 case 2:
593 if( !strcasecmp( "style", node ) )
595 TAB_APPEND( p_sys->i_ssa_styles, p_sys->pp_ssa_styles, p_ssa_style );
597 p_ssa_style = NULL;
598 i_style_level--;
600 break;
602 break;
604 case XML_READER_STARTELEM:
605 if( !strcasecmp( "metadata", node ) && (i_style_level == 0) )
606 i_metadata_level++;
607 else if( !strcasecmp( "resolution", node ) &&
608 ( i_metadata_level == 1) )
610 const char *attr, *val;
611 while( (attr = xml_ReaderNextAttr( p_xml_reader, &val )) )
613 if( !strcasecmp( "x", attr ) )
614 p_sys->i_original_width = atoi( val );
615 else if( !strcasecmp( "y", attr ) )
616 p_sys->i_original_height = atoi( val );
619 else if( !strcasecmp( "styles", node ) && (i_style_level == 0) )
621 i_style_level++;
623 else if( !strcasecmp( "style", node ) && (i_style_level == 1) )
625 i_style_level++;
627 p_ssa_style = calloc( 1, sizeof(ssa_style_t) );
628 if( unlikely(!p_ssa_style) )
629 return;
630 /* All styles are supposed to default to Default, and then
631 * one or more settings are over-ridden.
632 * At the moment this only effects styles defined AFTER
633 * Default in the XML
635 for( int i = 0; i < p_sys->i_ssa_styles; i++ )
637 if( !strcasecmp( p_sys->pp_ssa_styles[i]->psz_stylename, "Default" ) )
639 ssa_style_t *p_default_style = p_sys->pp_ssa_styles[i];
641 memcpy( p_ssa_style, p_default_style, sizeof( ssa_style_t ) );
642 //FIXME: Make font_style a pointer. Actually we double copy some data here,
643 // we use text_style_Copy to avoid copying psz_fontname, though .
644 text_style_Copy( &p_ssa_style->font_style, &p_default_style->font_style );
645 p_ssa_style->psz_stylename = NULL;
649 const char *attr, *val;
650 while( (attr = xml_ReaderNextAttr( p_xml_reader, &val )) )
652 if( !strcasecmp( "name", attr ) )
654 free( p_ssa_style->psz_stylename );
655 p_ssa_style->psz_stylename = strdup( val );
659 else if( !strcasecmp( "fontstyle", node ) && (i_style_level == 2) )
661 const char *attr, *val;
662 while( (attr = xml_ReaderNextAttr( p_xml_reader, &val )) )
664 if( !strcasecmp( "face", attr ) )
666 free( p_ssa_style->font_style.psz_fontname );
667 p_ssa_style->font_style.psz_fontname = strdup( val );
669 else if( !strcasecmp( "size", attr ) )
671 if( ( *val == '+' ) || ( *val == '-' ) )
673 int i_value = atoi( val );
675 if( ( i_value >= -5 ) && ( i_value <= 5 ) )
676 p_ssa_style->font_style.i_font_size +=
677 ( i_value * p_ssa_style->font_style.i_font_size ) / 10;
678 else if( i_value < -5 )
679 p_ssa_style->font_style.i_font_size = - i_value;
680 else if( i_value > 5 )
681 p_ssa_style->font_style.i_font_size = i_value;
683 else
684 p_ssa_style->font_style.i_font_size = atoi( val );
686 else if( !strcasecmp( "italic", attr ) )
688 if( !strcasecmp( "yes", val ))
689 p_ssa_style->font_style.i_style_flags |= STYLE_ITALIC;
690 else
691 p_ssa_style->font_style.i_style_flags &= ~STYLE_ITALIC;
693 else if( !strcasecmp( "weight", attr ) )
695 if( !strcasecmp( "bold", val ))
696 p_ssa_style->font_style.i_style_flags |= STYLE_BOLD;
697 else
698 p_ssa_style->font_style.i_style_flags &= ~STYLE_BOLD;
700 else if( !strcasecmp( "underline", attr ) )
702 if( !strcasecmp( "yes", val ))
703 p_ssa_style->font_style.i_style_flags |= STYLE_UNDERLINE;
704 else
705 p_ssa_style->font_style.i_style_flags &= ~STYLE_UNDERLINE;
707 else if( !strcasecmp( "color", attr ) )
709 if( *val == '#' )
711 unsigned long col = strtol(val+1, NULL, 16);
712 p_ssa_style->font_style.i_font_color = (col & 0x00ffffff);
713 p_ssa_style->font_style.i_font_alpha = (col >> 24) & 0xff;
716 else if( !strcasecmp( "outline-color", attr ) )
718 if( *val == '#' )
720 unsigned long col = strtol(val+1, NULL, 16);
721 p_ssa_style->font_style.i_outline_color = (col & 0x00ffffff);
722 p_ssa_style->font_style.i_outline_alpha = (col >> 24) & 0xff;
725 else if( !strcasecmp( "outline-level", attr ) )
727 p_ssa_style->font_style.i_outline_width = atoi( val );
729 else if( !strcasecmp( "shadow-color", attr ) )
731 if( *val == '#' )
733 unsigned long col = strtol(val+1, NULL, 16);
734 p_ssa_style->font_style.i_shadow_color = (col & 0x00ffffff);
735 p_ssa_style->font_style.i_shadow_alpha = (col >> 24) & 0xff;
738 else if( !strcasecmp( "shadow-level", attr ) )
740 p_ssa_style->font_style.i_shadow_width = atoi( val );
742 else if( !strcasecmp( "back-color", attr ) )
744 if( *val == '#' )
746 unsigned long col = strtol(val+1, NULL, 16);
747 p_ssa_style->font_style.i_karaoke_background_color = (col & 0x00ffffff);
748 p_ssa_style->font_style.i_karaoke_background_alpha = (col >> 24) & 0xff;
751 else if( !strcasecmp( "spacing", attr ) )
753 p_ssa_style->font_style.i_spacing = atoi( val );
757 else if( !strcasecmp( "position", node ) && (i_style_level == 2) )
759 const char *attr, *val;
760 while( (attr = xml_ReaderNextAttr( p_xml_reader, &val )) )
762 if( !strcasecmp( "alignment", attr ) )
764 if( !strcasecmp( "TopLeft", val ) )
765 p_ssa_style->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
766 else if( !strcasecmp( "TopCenter", val ) )
767 p_ssa_style->i_align = SUBPICTURE_ALIGN_TOP;
768 else if( !strcasecmp( "TopRight", val ) )
769 p_ssa_style->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_RIGHT;
770 else if( !strcasecmp( "MiddleLeft", val ) )
771 p_ssa_style->i_align = SUBPICTURE_ALIGN_LEFT;
772 else if( !strcasecmp( "MiddleCenter", val ) )
773 p_ssa_style->i_align = 0;
774 else if( !strcasecmp( "MiddleRight", val ) )
775 p_ssa_style->i_align = SUBPICTURE_ALIGN_RIGHT;
776 else if( !strcasecmp( "BottomLeft", val ) )
777 p_ssa_style->i_align = SUBPICTURE_ALIGN_BOTTOM | SUBPICTURE_ALIGN_LEFT;
778 else if( !strcasecmp( "BottomCenter", val ) )
779 p_ssa_style->i_align = SUBPICTURE_ALIGN_BOTTOM;
780 else if( !strcasecmp( "BottomRight", val ) )
781 p_ssa_style->i_align = SUBPICTURE_ALIGN_BOTTOM | SUBPICTURE_ALIGN_RIGHT;
783 else if( !strcasecmp( "horizontal-margin", attr ) )
785 if( strchr( val, '%' ) )
787 p_ssa_style->i_margin_h = 0;
788 p_ssa_style->i_margin_percent_h = atoi( val );
790 else
792 p_ssa_style->i_margin_h = atoi( val );
793 p_ssa_style->i_margin_percent_h = 0;
796 else if( !strcasecmp( "vertical-margin", attr ) )
798 if( strchr( val, '%' ) )
800 p_ssa_style->i_margin_v = 0;
801 p_ssa_style->i_margin_percent_v = atoi( val );
803 else
805 p_ssa_style->i_margin_v = atoi( val );
806 p_ssa_style->i_margin_percent_v = 0;
811 break;
814 free( p_ssa_style );
819 static subpicture_region_t *ParseUSFString( decoder_t *p_dec,
820 char *psz_subtitle )
822 decoder_sys_t *p_sys = p_dec->p_sys;
823 subpicture_region_t *p_region_first = NULL;
824 subpicture_region_t *p_region_upto = p_region_first;
826 while( *psz_subtitle )
828 if( *psz_subtitle == '<' )
830 char *psz_end = NULL;
832 if(( !strncasecmp( psz_subtitle, "<text ", 6 )) ||
833 ( !strncasecmp( psz_subtitle, "<text>", 6 )))
835 psz_end = strcasestr( psz_subtitle, "</text>" );
837 if( psz_end )
839 subpicture_region_t *p_text_region;
841 psz_end += strcspn( psz_end, ">" ) + 1;
843 p_text_region = CreateTextRegion( p_dec,
844 psz_subtitle,
845 psz_end - psz_subtitle,
846 p_sys->i_align );
848 if( p_text_region )
850 p_text_region->psz_text = CreatePlainText( p_text_region->psz_html );
852 if( ! var_CreateGetBool( p_dec, "subsdec-formatted" ) )
854 free( p_text_region->psz_html );
855 p_text_region->psz_html = NULL;
859 if( !p_region_first )
861 p_region_first = p_region_upto = p_text_region;
863 else if( p_text_region )
865 p_region_upto->p_next = p_text_region;
866 p_region_upto = p_region_upto->p_next;
870 else if(( !strncasecmp( psz_subtitle, "<karaoke ", 9 )) ||
871 ( !strncasecmp( psz_subtitle, "<karaoke>", 9 )))
873 psz_end = strcasestr( psz_subtitle, "</karaoke>" );
875 if( psz_end )
877 subpicture_region_t *p_text_region;
879 psz_end += strcspn( psz_end, ">" ) + 1;
881 p_text_region = CreateTextRegion( p_dec,
882 psz_subtitle,
883 psz_end - psz_subtitle,
884 p_sys->i_align );
886 if( p_text_region )
888 if( ! var_CreateGetBool( p_dec, "subsdec-formatted" ) )
890 free( p_text_region->psz_html );
891 p_text_region->psz_html = NULL;
894 if( !p_region_first )
896 p_region_first = p_region_upto = p_text_region;
898 else if( p_text_region )
900 p_region_upto->p_next = p_text_region;
901 p_region_upto = p_region_upto->p_next;
905 else if(( !strncasecmp( psz_subtitle, "<image ", 7 )) ||
906 ( !strncasecmp( psz_subtitle, "<image>", 7 )))
908 subpicture_region_t *p_image_region = NULL;
910 char *psz_end = strcasestr( psz_subtitle, "</image>" );
911 char *psz_content = strchr( psz_subtitle, '>' );
912 int i_transparent = -1;
914 /* If a colorkey parameter is specified, then we have to map
915 * that index in the picture through as transparent (it is
916 * required by the USF spec but is also recommended that if the
917 * creator really wants a transparent colour that they use a
918 * type like PNG that properly supports it; this goes doubly
919 * for VLC because the pictures are stored internally in YUV
920 * and the resulting colour-matching may not produce the
921 * desired results.)
923 char *psz_tmp = GrabAttributeValue( "colorkey", psz_subtitle );
924 if( psz_tmp )
926 if( *psz_tmp == '#' )
927 i_transparent = strtol( psz_tmp + 1, NULL, 16 ) & 0x00ffffff;
928 free( psz_tmp );
930 if( psz_content && ( psz_content < psz_end ) )
932 char *psz_filename = strndup( &psz_content[1], psz_end - &psz_content[1] );
933 if( psz_filename )
935 p_image_region = LoadEmbeddedImage( p_dec,
936 psz_filename, i_transparent );
937 free( psz_filename );
941 if( psz_end ) psz_end += strcspn( psz_end, ">" ) + 1;
943 if( p_image_region )
945 SetupPositions( p_image_region, psz_subtitle );
947 p_image_region->p_next = NULL;
948 p_image_region->psz_text = NULL;
949 p_image_region->psz_html = NULL;
952 if( !p_region_first )
954 p_region_first = p_region_upto = p_image_region;
956 else if( p_image_region )
958 p_region_upto->p_next = p_image_region;
959 p_region_upto = p_region_upto->p_next;
962 if( psz_end )
963 psz_subtitle = psz_end - 1;
965 psz_subtitle += strcspn( psz_subtitle, ">" );
968 psz_subtitle++;
971 return p_region_first;
974 /*****************************************************************************
975 * ParseUSFHeader: Retrieve global formatting information etc
976 *****************************************************************************/
977 static void ParseUSFHeader( decoder_t *p_dec )
979 stream_t *p_sub = NULL;
980 xml_reader_t *p_xml_reader = NULL;
982 p_sub = stream_MemoryNew( VLC_OBJECT(p_dec),
983 p_dec->fmt_in.p_extra,
984 p_dec->fmt_in.i_extra,
985 true );
986 if( !p_sub )
987 return;
989 p_xml_reader = xml_ReaderCreate( p_dec, p_sub );
990 if( likely(p_xml_reader) )
992 const char *node;
994 /* Look for Root Node */
995 if( xml_ReaderNextNode( p_xml_reader, &node ) == XML_READER_STARTELEM
996 && !strcasecmp( "usfsubtitles", node ) )
997 ParseUSFHeaderTags( p_dec, p_xml_reader );
999 xml_ReaderDelete( p_xml_reader );
1001 stream_Delete( p_sub );
1004 /* Function now handles tags which has attribute values, and tries
1005 * to deal with &' commands too. It no longer modifies the string
1006 * in place, so that the original text can be reused
1008 static char *StripTags( char *psz_subtitle )
1010 char *psz_text_start;
1011 char *psz_text;
1013 psz_text = psz_text_start = malloc( strlen( psz_subtitle ) + 1 );
1014 if( !psz_text_start )
1015 return NULL;
1017 while( *psz_subtitle )
1019 /* Mask out any pre-existing LFs in the subtitle */
1020 if( *psz_subtitle == '\n' )
1021 *psz_subtitle = ' ';
1023 if( *psz_subtitle == '<' )
1025 if( strncasecmp( psz_subtitle, "<br/>", 5 ) == 0 )
1026 *psz_text++ = '\n';
1028 psz_subtitle += strcspn( psz_subtitle, ">" );
1030 else if( *psz_subtitle == '&' )
1032 if( !strncasecmp( psz_subtitle, "&lt;", 4 ))
1034 *psz_text++ = '<';
1035 psz_subtitle += strcspn( psz_subtitle, ";" );
1037 else if( !strncasecmp( psz_subtitle, "&gt;", 4 ))
1039 *psz_text++ = '>';
1040 psz_subtitle += strcspn( psz_subtitle, ";" );
1042 else if( !strncasecmp( psz_subtitle, "&amp;", 5 ))
1044 *psz_text++ = '&';
1045 psz_subtitle += strcspn( psz_subtitle, ";" );
1047 else if( !strncasecmp( psz_subtitle, "&quot;", 6 ))
1049 *psz_text++ = '\"';
1050 psz_subtitle += strcspn( psz_subtitle, ";" );
1052 else
1054 /* Assume it is just a normal ampersand */
1055 *psz_text++ = '&';
1058 else
1060 *psz_text++ = *psz_subtitle;
1063 /* Security fix: Account for the case where input ends early */
1064 if( *psz_subtitle == '\0' ) break;
1066 psz_subtitle++;
1068 *psz_text++ = '\0';
1070 char *psz = realloc( psz_text_start, psz_text - psz_text_start );
1071 return likely(psz != NULL) ? psz : psz_text_start;
1074 /* Turn a HTML subtitle, turn into a plain-text version,
1075 * complete with sensible whitespace compaction
1078 static char *CreatePlainText( char *psz_subtitle )
1080 char *psz_text = StripTags( psz_subtitle );
1081 char *s;
1083 if( !psz_text )
1084 return NULL;
1086 s = strpbrk( psz_text, "\t\r\n " );
1087 while( s )
1089 int k;
1090 char spc = ' ';
1091 int i_whitespace = strspn( s, "\t\r\n " );
1093 /* Favour '\n' over other whitespaces - if one of these
1094 * occurs in the whitespace use a '\n' as our value,
1095 * otherwise just use a ' '
1097 for( k = 0; k < i_whitespace; k++ )
1098 if( s[k] == '\n' ) spc = '\n';
1100 if( i_whitespace > 1 )
1102 memmove( &s[1],
1103 &s[i_whitespace],
1104 strlen( s ) - i_whitespace + 1 );
1106 *s++ = spc;
1108 s = strpbrk( s, "\t\r\n " );
1110 return psz_text;
1113 /****************************************************************************
1114 * download and resize image located at psz_url
1115 ***************************************************************************/
1116 static subpicture_region_t *LoadEmbeddedImage( decoder_t *p_dec,
1117 const char *psz_filename,
1118 int i_transparent_color )
1120 decoder_sys_t *p_sys = p_dec->p_sys;
1121 subpicture_region_t *p_region;
1122 video_format_t fmt_out;
1123 picture_t *p_pic = NULL;
1125 for( int k = 0; k < p_sys->i_images; k++ )
1127 if( p_sys->pp_images &&
1128 !strcmp( p_sys->pp_images[k]->psz_filename, psz_filename ) )
1130 p_pic = p_sys->pp_images[k]->p_pic;
1131 break;
1135 if( !p_pic )
1137 msg_Err( p_dec, "Unable to read image %s", psz_filename );
1138 return NULL;
1141 /* Display the feed's image */
1142 memset( &fmt_out, 0, sizeof( video_format_t));
1144 fmt_out.i_chroma = VLC_CODEC_YUVA;
1145 fmt_out.i_sar_num = fmt_out.i_sar_den = 1;
1146 fmt_out.i_width =
1147 fmt_out.i_visible_width = p_pic->format.i_visible_width;
1148 fmt_out.i_height =
1149 fmt_out.i_visible_height = p_pic->format.i_visible_height;
1151 p_region = subpicture_region_New( &fmt_out );
1152 if( !p_region )
1154 msg_Err( p_dec, "cannot allocate SPU region" );
1155 return NULL;
1157 assert( p_pic->format.i_chroma == VLC_CODEC_YUVA );
1158 /* FIXME the copy is probably not needed anymore */
1159 picture_CopyPixels( p_region->p_picture, p_pic );
1161 /* This isn't the best way to do this - if you really want transparency, then
1162 * you're much better off using an image type that supports it like PNG. The
1163 * spec requires this support though.
1165 if( i_transparent_color > 0 )
1167 int i_r = ( i_transparent_color >> 16 ) & 0xff;
1168 int i_g = ( i_transparent_color >> 8 ) & 0xff;
1169 int i_b = ( i_transparent_color ) & 0xff;
1171 /* FIXME it cannot work as the yuv conversion code will probably NOT match
1172 * this one */
1173 int i_y = ( ( ( 66 * i_r + 129 * i_g + 25 * i_b + 128 ) >> 8 ) + 16 );
1174 int i_u = ( ( -38 * i_r - 74 * i_g + 112 * i_b + 128 ) >> 8 ) + 128 ;
1175 int i_v = ( ( 112 * i_r - 94 * i_g - 18 * i_b + 128 ) >> 8 ) + 128 ;
1177 assert( p_region->fmt.i_chroma == VLC_CODEC_YUVA );
1178 for( unsigned int y = 0; y < p_region->fmt.i_height; y++ )
1180 for( unsigned int x = 0; x < p_region->fmt.i_width; x++ )
1182 if( p_region->p_picture->Y_PIXELS[y*p_region->p_picture->Y_PITCH + x] != i_y ||
1183 p_region->p_picture->U_PIXELS[y*p_region->p_picture->U_PITCH + x] != i_u ||
1184 p_region->p_picture->V_PIXELS[y*p_region->p_picture->V_PITCH + x] != i_v )
1185 continue;
1186 p_region->p_picture->A_PIXELS[y*p_region->p_picture->A_PITCH + x] = 0;
1191 return p_region;