Contribs: add libbluray
[vlc/asuraparaju-public.git] / modules / codec / spudec / parse.c
blob99a8c4702da49bf03729cdd0f816849a52be61c3
1 /*****************************************************************************
2 * parse.c: SPU parser
3 *****************************************************************************
4 * Copyright (C) 2000-2001, 2005, 2006 the VideoLAN team
5 * $Id$
7 * Authors: Sam Hocevar <sam@zoy.org>
8 * Laurent Aimar <fenrir@via.ecp.fr>
9 * Gildas Bazin <gbazin@videolan.org>
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.
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.
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 *****************************************************************************/
26 /*****************************************************************************
27 * Preamble
28 *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
33 #include <vlc_common.h>
34 #include <vlc_codec.h>
35 #include <vlc_input.h>
37 #include "spudec.h"
39 /*****************************************************************************
40 * Local prototypes.
41 *****************************************************************************/
42 typedef struct
44 int i_width;
45 int i_height;
46 int i_x;
47 int i_y;
48 } spu_properties_t;
50 typedef struct
52 int pi_offset[2]; /* byte offsets to data */
53 uint16_t *p_data;
55 /* Color information */
56 bool b_palette;
57 uint8_t pi_alpha[4];
58 uint8_t pi_yuv[4][3];
60 /* Auto crop fullscreen subtitles */
61 bool b_auto_crop;
62 int i_y_top_offset;
63 int i_y_bottom_offset;
65 } subpicture_data_t;
67 static int ParseControlSeq( decoder_t *, subpicture_t *, subpicture_data_t *,
68 spu_properties_t *, mtime_t i_pts );
69 static int ParseRLE ( decoder_t *, subpicture_data_t *,
70 const spu_properties_t * );
71 static void Render ( decoder_t *, subpicture_t *, subpicture_data_t *,
72 const spu_properties_t * );
74 /*****************************************************************************
75 * AddNibble: read a nibble from a source packet and add it to our integer.
76 *****************************************************************************/
77 static inline unsigned int AddNibble( unsigned int i_code,
78 const uint8_t *p_src, unsigned int *pi_index )
80 if( *pi_index & 0x1 )
82 return( i_code << 4 | ( p_src[(*pi_index)++ >> 1] & 0xf ) );
84 else
86 return( i_code << 4 | p_src[(*pi_index)++ >> 1] >> 4 );
90 /*****************************************************************************
91 * ParsePacket: parse an SPU packet and send it to the video output
92 *****************************************************************************
93 * This function parses the SPU packet and, if valid, sends it to the
94 * video output.
95 *****************************************************************************/
96 subpicture_t * ParsePacket( decoder_t *p_dec )
98 decoder_sys_t *p_sys = p_dec->p_sys;
99 subpicture_t *p_spu;
100 subpicture_data_t spu_data;
101 spu_properties_t spu_properties;
103 /* Allocate the subpicture internal data. */
104 p_spu = decoder_NewSubpicture( p_dec, NULL );
105 if( !p_spu ) return NULL;
107 p_spu->i_original_picture_width =
108 p_dec->fmt_in.subs.spu.i_original_frame_width;
109 p_spu->i_original_picture_height =
110 p_dec->fmt_in.subs.spu.i_original_frame_height;
112 /* Getting the control part */
113 if( ParseControlSeq( p_dec, p_spu, &spu_data, &spu_properties, p_sys->i_pts ) )
115 /* There was a parse error, delete the subpicture */
116 decoder_DeleteSubpicture( p_dec, p_spu );
117 return NULL;
120 /* we are going to expand the RLE stuff so that we won't need to read
121 * nibbles later on. This will speed things up a lot. Plus, we'll only
122 * need to do this stupid interlacing stuff once.
124 * Rationale for the "p_spudec->i_rle_size * 4*sizeof(*spu_data.p_data)":
125 * one byte gaves two nibbles and may be used twice (once per field)
126 * generating 4 codes.
128 spu_data.p_data = malloc( sizeof(*spu_data.p_data) * 2 * 2 * p_sys->i_rle_size );
130 /* We try to display it */
131 if( ParseRLE( p_dec, &spu_data, &spu_properties ) )
133 /* There was a parse error, delete the subpicture */
134 decoder_DeleteSubpicture( p_dec, p_spu );
135 free( spu_data.p_data );
136 return NULL;
139 #ifdef DEBUG_SPUDEC
140 msg_Dbg( p_dec, "total size: 0x%x, RLE offsets: 0x%x 0x%x",
141 p_sys->i_spu_size,
142 spu_data.pi_offset[0], spu_data.pi_offset[1] );
143 #endif
145 Render( p_dec, p_spu, &spu_data, &spu_properties );
146 free( spu_data.p_data );
148 return p_spu;
151 /*****************************************************************************
152 * ParseControlSeq: parse all SPU control sequences
153 *****************************************************************************
154 * This is the most important part in SPU decoding. We get dates, palette
155 * information, coordinates, and so on. For more information on the
156 * subtitles format, see http://sam.zoy.org/doc/dvd/subtitles/index.html
157 *****************************************************************************/
158 static int ParseControlSeq( decoder_t *p_dec, subpicture_t *p_spu,
159 subpicture_data_t *p_spu_data, spu_properties_t *p_spu_properties, mtime_t i_pts )
161 decoder_sys_t *p_sys = p_dec->p_sys;
163 /* Our current index in the SPU packet */
164 unsigned int i_index;
166 /* The next start-of-control-sequence index and the previous one */
167 unsigned int i_next_seq = 0, i_cur_seq = 0;
169 /* Command and date */
170 uint8_t i_command = SPU_CMD_END;
171 mtime_t date = 0;
172 bool b_cmd_offset = false;
173 bool b_cmd_alpha = false;
174 subpicture_data_t spu_data_cmd;
176 if( !p_spu || !p_spu_data )
177 return VLC_EGENERIC;
179 /* Create working space for spu data */
180 memset( &spu_data_cmd, 0, sizeof(spu_data_cmd) );
181 spu_data_cmd.pi_offset[0] = -1;
182 spu_data_cmd.pi_offset[1] = -1;
183 spu_data_cmd.p_data = NULL;
184 spu_data_cmd.b_palette = false;
185 spu_data_cmd.b_auto_crop = false;
186 spu_data_cmd.i_y_top_offset = 0;
187 spu_data_cmd.i_y_bottom_offset = 0;
188 spu_data_cmd.pi_alpha[0] = 0x00;
189 spu_data_cmd.pi_alpha[1] = 0x0f;
190 spu_data_cmd.pi_alpha[2] = 0x0f;
191 spu_data_cmd.pi_alpha[3] = 0x0f;
193 /* Initialize the structure */
194 p_spu->i_start = p_spu->i_stop = 0;
195 p_spu->b_ephemer = false;
197 memset( p_spu_properties, 0, sizeof(*p_spu_properties) );
199 /* */
200 *p_spu_data = spu_data_cmd;
202 for( i_index = 4 + p_sys->i_rle_size; i_index < p_sys->i_spu_size ; )
204 /* If we just read a command sequence, read the next one;
205 * otherwise, go on with the commands of the current sequence. */
206 if( i_command == SPU_CMD_END )
208 if( i_index + 4 > p_sys->i_spu_size )
210 msg_Err( p_dec, "overflow in SPU command sequence" );
211 return VLC_EGENERIC;
214 /* */
215 b_cmd_offset = false;
216 b_cmd_alpha = false;
217 /* Get the control sequence date */
218 date = (mtime_t)GetWBE( &p_sys->buffer[i_index] ) * 11000;
220 /* Next offset */
221 i_cur_seq = i_index;
222 i_next_seq = GetWBE( &p_sys->buffer[i_index+2] );
224 if( i_next_seq > p_sys->i_spu_size )
226 msg_Err( p_dec, "overflow in SPU next command sequence" );
227 return VLC_EGENERIC;
230 /* Skip what we just read */
231 i_index += 4;
234 i_command = p_sys->buffer[i_index];
236 switch( i_command )
238 case SPU_CMD_FORCE_DISPLAY: /* 00 (force displaying) */
239 p_spu->i_start = i_pts + date;
240 p_spu->b_ephemer = true;
241 i_index += 1;
242 break;
244 /* Convert the dates in seconds to PTS values */
245 case SPU_CMD_START_DISPLAY: /* 01 (start displaying) */
246 p_spu->i_start = i_pts + date;
247 i_index += 1;
248 break;
250 case SPU_CMD_STOP_DISPLAY: /* 02 (stop displaying) */
251 p_spu->i_stop = i_pts + date;
252 i_index += 1;
253 break;
255 case SPU_CMD_SET_PALETTE:
256 /* 03xxxx (palette) */
257 if( i_index + 3 > p_sys->i_spu_size )
259 msg_Err( p_dec, "overflow in SPU command" );
260 return VLC_EGENERIC;
263 if( p_dec->fmt_in.subs.spu.palette[0] == 0xBeeF )
265 unsigned int idx[4];
266 int i;
268 spu_data_cmd.b_palette = true;
270 idx[0] = (p_sys->buffer[i_index+1]>>4)&0x0f;
271 idx[1] = (p_sys->buffer[i_index+1])&0x0f;
272 idx[2] = (p_sys->buffer[i_index+2]>>4)&0x0f;
273 idx[3] = (p_sys->buffer[i_index+2])&0x0f;
275 for( i = 0; i < 4 ; i++ )
277 uint32_t i_color = p_dec->fmt_in.subs.spu.palette[1+idx[i]];
279 /* FIXME: this job should be done sooner */
280 spu_data_cmd.pi_yuv[3-i][0] = (i_color>>16) & 0xff;
281 spu_data_cmd.pi_yuv[3-i][1] = (i_color>>0) & 0xff;
282 spu_data_cmd.pi_yuv[3-i][2] = (i_color>>8) & 0xff;
286 i_index += 3;
287 break;
289 case SPU_CMD_SET_ALPHACHANNEL: /* 04xxxx (alpha channel) */
290 if( i_index + 3 > p_sys->i_spu_size )
292 msg_Err( p_dec, "overflow in SPU command" );
293 return VLC_EGENERIC;
296 if(!p_sys->b_disabletrans)
297 { /* If we want to use original transparency values */
298 b_cmd_alpha = true;
299 spu_data_cmd.pi_alpha[3] = (p_sys->buffer[i_index+1]>>4)&0x0f;
300 spu_data_cmd.pi_alpha[2] = (p_sys->buffer[i_index+1])&0x0f;
301 spu_data_cmd.pi_alpha[1] = (p_sys->buffer[i_index+2]>>4)&0x0f;
302 spu_data_cmd.pi_alpha[0] = (p_sys->buffer[i_index+2])&0x0f;
305 i_index += 3;
306 break;
308 case SPU_CMD_SET_COORDINATES: /* 05xxxyyyxxxyyy (coordinates) */
309 if( i_index + 7 > p_sys->i_spu_size )
311 msg_Err( p_dec, "overflow in SPU command" );
312 return VLC_EGENERIC;
315 p_spu_properties->i_x = (p_sys->buffer[i_index+1]<<4)|
316 ((p_sys->buffer[i_index+2]>>4)&0x0f);
317 p_spu_properties->i_width = (((p_sys->buffer[i_index+2]&0x0f)<<8)|
318 p_sys->buffer[i_index+3]) - p_spu_properties->i_x + 1;
320 p_spu_properties->i_y = (p_sys->buffer[i_index+4]<<4)|
321 ((p_sys->buffer[i_index+5]>>4)&0x0f);
322 p_spu_properties->i_height = (((p_sys->buffer[i_index+5]&0x0f)<<8)|
323 p_sys->buffer[i_index+6]) - p_spu_properties->i_y + 1;
325 /* Auto crop fullscreen subtitles */
326 if( p_spu_properties->i_height > 250 )
327 p_spu_data->b_auto_crop = true;
329 i_index += 7;
330 break;
332 case SPU_CMD_SET_OFFSETS: /* 06xxxxyyyy (byte offsets) */
333 if( i_index + 5 > p_sys->i_spu_size )
335 msg_Err( p_dec, "overflow in SPU command" );
336 return VLC_EGENERIC;
339 b_cmd_offset = true;
340 p_spu_data->pi_offset[0] = GetWBE(&p_sys->buffer[i_index+1]) - 4;
341 p_spu_data->pi_offset[1] = GetWBE(&p_sys->buffer[i_index+3]) - 4;
342 i_index += 5;
343 break;
345 case SPU_CMD_END: /* ff (end) */
346 if( b_cmd_offset )
348 /* It seems that palette and alpha from the block having
349 * the cmd offset have to be used
350 * XXX is it all ? */
351 p_spu_data->b_palette = spu_data_cmd.b_palette;
352 if( spu_data_cmd.b_palette )
353 memcpy( p_spu_data->pi_yuv, spu_data_cmd.pi_yuv, sizeof(spu_data_cmd.pi_yuv) );
354 if( b_cmd_alpha )
355 memcpy( p_spu_data->pi_alpha, spu_data_cmd.pi_alpha, sizeof(spu_data_cmd.pi_alpha) );
358 i_index += 1;
359 break;
361 default: /* xx (unknown command) */
362 msg_Warn( p_dec, "unknown SPU command 0x%.2x", i_command );
363 if( i_index + 1 < i_next_seq )
365 /* There is at least one other command sequence */
366 if( p_sys->buffer[i_next_seq - 1] == SPU_CMD_END )
368 /* This is consistent. Skip to that command sequence. */
369 i_index = i_next_seq;
371 else
373 /* There were other commands. */
374 msg_Warn( p_dec, "cannot recover, dropping subtitle" );
375 return VLC_EGENERIC;
378 else
380 /* We were in the last command sequence. Stop parsing by
381 * pretending we met an SPU_CMD_END command. */
382 i_command = SPU_CMD_END;
383 i_index++;
387 /* */
388 if( i_command == SPU_CMD_END && i_index != i_next_seq )
389 break;
392 /* Check that the next sequence index matches the current one */
393 if( i_next_seq != i_cur_seq )
395 msg_Err( p_dec, "index mismatch (0x%.4x != 0x%.4x)",
396 i_next_seq, i_cur_seq );
397 return VLC_EGENERIC;
400 if( i_index > p_sys->i_spu_size )
402 msg_Err( p_dec, "uh-oh, we went too far (0x%.4x > 0x%.4x)",
403 i_index, p_sys->i_spu_size );
404 return VLC_EGENERIC;
407 const int i_spu_size = p_sys->i_spu - 4;
408 if( p_spu_data->pi_offset[0] < 0 || p_spu_data->pi_offset[0] >= i_spu_size ||
409 p_spu_data->pi_offset[1] < 0 || p_spu_data->pi_offset[1] >= i_spu_size )
411 msg_Err( p_dec, "invalid offset values" );
412 return VLC_EGENERIC;
415 if( !p_spu->i_start )
417 msg_Err( p_dec, "no `start display' command" );
418 return VLC_EGENERIC;
421 if( p_spu->i_stop <= p_spu->i_start && !p_spu->b_ephemer )
423 /* This subtitle will live for 5 seconds or until the next subtitle */
424 p_spu->i_stop = p_spu->i_start + (mtime_t)500 * 11000;
425 p_spu->b_ephemer = true;
428 /* Get rid of padding bytes */
429 if( p_sys->i_spu_size > i_index + 1 )
431 /* Zero or one padding byte are quite usual
432 * More than one padding byte - this is very strange, but
433 * we can ignore them. */
434 msg_Warn( p_dec, "%i padding bytes, we usually get 0 or 1 of them",
435 p_sys->i_spu_size - i_index );
438 /* Successfully parsed ! */
439 return VLC_SUCCESS;
442 /*****************************************************************************
443 * ParseRLE: parse the RLE part of the subtitle
444 *****************************************************************************
445 * This part parses the subtitle graphical data and stores it in a more
446 * convenient structure for later decoding. For more information on the
447 * subtitles format, see http://sam.zoy.org/doc/dvd/subtitles/index.html
448 *****************************************************************************/
449 static int ParseRLE( decoder_t *p_dec,
450 subpicture_data_t *p_spu_data,
451 const spu_properties_t *p_spu_properties )
453 decoder_sys_t *p_sys = p_dec->p_sys;
455 const unsigned int i_width = p_spu_properties->i_width;
456 const unsigned int i_height = p_spu_properties->i_height;
457 unsigned int i_x, i_y;
459 uint16_t *p_dest = p_spu_data->p_data;
461 /* The subtitles are interlaced, we need two offsets */
462 unsigned int i_id = 0; /* Start on the even SPU layer */
463 unsigned int pi_table[ 2 ];
464 unsigned int *pi_offset;
466 /* Cropping */
467 bool b_empty_top = true;
468 unsigned int i_skipped_top = 0, i_skipped_bottom = 0;
469 unsigned int i_transparent_code = 0;
471 /* Colormap statistics */
472 int i_border = -1;
473 int stats[4]; stats[0] = stats[1] = stats[2] = stats[3] = 0;
475 pi_table[ 0 ] = p_spu_data->pi_offset[ 0 ] << 1;
476 pi_table[ 1 ] = p_spu_data->pi_offset[ 1 ] << 1;
478 for( i_y = 0 ; i_y < i_height ; i_y++ )
480 unsigned int i_code;
481 pi_offset = pi_table + i_id;
483 for( i_x = 0 ; i_x < i_width ; i_x += i_code >> 2 )
485 i_code = 0;
486 for( unsigned int i_min = 1; i_min <= 0x40 && i_code < i_min; i_min <<= 2 )
488 if( (*pi_offset >> 1) >= p_sys->i_spu_size )
490 msg_Err( p_dec, "out of bounds while reading rle" );
491 return VLC_EGENERIC;
493 i_code = AddNibble( i_code, &p_sys->buffer[4], pi_offset );
495 if( i_code < 0x0004 )
497 /* If the 14 first bits are set to 0, then it's a
498 * new line. We emulate it. */
499 i_code |= ( i_width - i_x ) << 2;
502 if( ( (i_code >> 2) + i_x + i_y * i_width ) > i_height * i_width )
504 msg_Err( p_dec, "out of bounds, %i at (%i,%i) is out of %ix%i",
505 i_code >> 2, i_x, i_y, i_width, i_height );
506 return VLC_EGENERIC;
509 /* Try to find the border color */
510 if( p_spu_data->pi_alpha[ i_code & 0x3 ] != 0x00 )
512 i_border = i_code & 0x3;
513 stats[i_border] += i_code >> 2;
516 /* Auto crop subtitles (a lot more optimized) */
517 if( p_spu_data->b_auto_crop )
519 if( !i_y )
521 /* We assume that if the first line is transparent, then
522 * it is using the palette index for the
523 * (background) transparent color */
524 if( (i_code >> 2) == i_width &&
525 p_spu_data->pi_alpha[ i_code & 0x3 ] == 0x00 )
527 i_transparent_code = i_code;
529 else
531 p_spu_data->b_auto_crop = false;
535 if( i_code == i_transparent_code )
537 if( b_empty_top )
539 /* This is a blank top line, we skip it */
540 i_skipped_top++;
542 else
544 /* We can't be sure the current lines will be skipped,
545 * so we store the code just in case. */
546 *p_dest++ = i_code;
547 i_skipped_bottom++;
550 else
552 /* We got a valid code, store it */
553 *p_dest++ = i_code;
555 /* Valid code means no blank line */
556 b_empty_top = false;
557 i_skipped_bottom = 0;
560 else
562 *p_dest++ = i_code;
566 /* Check that we didn't go too far */
567 if( i_x > i_width )
569 msg_Err( p_dec, "i_x overflowed, %i > %i", i_x, i_width );
570 return VLC_EGENERIC;
573 /* Byte-align the stream */
574 if( *pi_offset & 0x1 )
576 (*pi_offset)++;
579 /* Swap fields */
580 i_id = ~i_id & 0x1;
583 /* We shouldn't get any padding bytes */
584 if( i_y < i_height )
586 msg_Err( p_dec, "padding bytes found in RLE sequence" );
587 msg_Err( p_dec, "send mail to <sam@zoy.org> if you "
588 "want to help debugging this" );
590 /* Skip them just in case */
591 while( i_y < i_height )
593 *p_dest++ = i_width << 2;
594 i_y++;
597 return VLC_EGENERIC;
600 #ifdef DEBUG_SPUDEC
601 msg_Dbg( p_dec, "valid subtitle, size: %ix%i, position: %i,%i",
602 p_spu->i_width, p_spu->i_height, p_spu->i_x, p_spu->i_y );
603 #endif
605 /* Crop if necessary */
606 if( i_skipped_top || i_skipped_bottom )
608 #ifdef DEBUG_SPUDEC
609 int i_y = p_spu->i_y + i_skipped_top;
610 int i_height = p_spu->i_height - (i_skipped_top + i_skipped_bottom);
611 #endif
612 p_spu_data->i_y_top_offset = i_skipped_top;
613 p_spu_data->i_y_bottom_offset = i_skipped_bottom;
614 #ifdef DEBUG_SPUDEC
615 msg_Dbg( p_dec, "cropped to: %ix%i, position: %i,%i",
616 p_spu->i_width, i_height, p_spu->i_x, i_y );
617 #endif
620 /* Handle color if no palette was found */
621 if( !p_spu_data->b_palette )
623 int i, i_inner = -1, i_shade = -1;
625 /* Set the border color */
626 p_spu_data->pi_yuv[i_border][0] = 0x00;
627 p_spu_data->pi_yuv[i_border][1] = 0x80;
628 p_spu_data->pi_yuv[i_border][2] = 0x80;
629 stats[i_border] = 0;
631 /* Find the inner colors */
632 for( i = 0 ; i < 4 && i_inner == -1 ; i++ )
634 if( stats[i] )
636 i_inner = i;
640 for( ; i < 4 && i_shade == -1 ; i++ )
642 if( stats[i] )
644 if( stats[i] > stats[i_inner] )
646 i_shade = i_inner;
647 i_inner = i;
649 else
651 i_shade = i;
656 /* Set the inner color */
657 if( i_inner != -1 )
659 p_spu_data->pi_yuv[i_inner][0] = 0xff;
660 p_spu_data->pi_yuv[i_inner][1] = 0x80;
661 p_spu_data->pi_yuv[i_inner][2] = 0x80;
664 /* Set the anti-aliasing color */
665 if( i_shade != -1 )
667 p_spu_data->pi_yuv[i_shade][0] = 0x80;
668 p_spu_data->pi_yuv[i_shade][1] = 0x80;
669 p_spu_data->pi_yuv[i_shade][2] = 0x80;
672 #ifdef DEBUG_SPUDEC
673 msg_Dbg( p_dec, "using custom palette (border %i, inner %i, shade %i)",
674 i_border, i_inner, i_shade );
675 #endif
678 return VLC_SUCCESS;
681 static void Render( decoder_t *p_dec, subpicture_t *p_spu,
682 subpicture_data_t *p_spu_data,
683 const spu_properties_t *p_spu_properties )
685 uint8_t *p_p;
686 int i_x, i_y, i_len, i_color, i_pitch;
687 const uint16_t *p_source = p_spu_data->p_data;
688 video_format_t fmt;
689 video_palette_t palette;
691 /* Create a new subpicture region */
692 memset( &fmt, 0, sizeof(video_format_t) );
693 fmt.i_chroma = VLC_CODEC_YUVP;
694 fmt.i_sar_num = 0; /* 0 means use aspect ratio of background video */
695 fmt.i_sar_den = 1;
696 fmt.i_width = fmt.i_visible_width = p_spu_properties->i_width;
697 fmt.i_height = fmt.i_visible_height = p_spu_properties->i_height -
698 p_spu_data->i_y_top_offset - p_spu_data->i_y_bottom_offset;
699 fmt.i_x_offset = fmt.i_y_offset = 0;
700 fmt.p_palette = &palette;
701 fmt.p_palette->i_entries = 4;
702 for( i_x = 0; i_x < fmt.p_palette->i_entries; i_x++ )
704 fmt.p_palette->palette[i_x][0] = p_spu_data->pi_yuv[i_x][0];
705 fmt.p_palette->palette[i_x][1] = p_spu_data->pi_yuv[i_x][1];
706 fmt.p_palette->palette[i_x][2] = p_spu_data->pi_yuv[i_x][2];
707 fmt.p_palette->palette[i_x][3] = p_spu_data->pi_alpha[i_x] * 0x11;
710 p_spu->p_region = subpicture_region_New( &fmt );
711 if( !p_spu->p_region )
713 msg_Err( p_dec, "cannot allocate SPU region" );
714 return;
717 p_spu->p_region->i_x = p_spu_properties->i_x;
718 p_spu->p_region->i_y = p_spu_properties->i_y + p_spu_data->i_y_top_offset;
719 p_p = p_spu->p_region->p_picture->p->p_pixels;
720 i_pitch = p_spu->p_region->p_picture->p->i_pitch;
722 /* Draw until we reach the bottom of the subtitle */
723 for( i_y = 0; i_y < (int)fmt.i_height * i_pitch; i_y += i_pitch )
725 /* Draw until we reach the end of the line */
726 for( i_x = 0 ; i_x < (int)fmt.i_width; i_x += i_len )
728 /* Get the RLE part, then draw the line */
729 i_color = *p_source & 0x3;
730 i_len = *p_source++ >> 2;
731 memset( p_p + i_x + i_y, i_color, i_len );