]> git.sesse.net Git - vlc/blob - modules/codec/zvbi.c
Be more carefull on when rtpInfo timestamps should be set.
[vlc] / modules / codec / zvbi.c
1 /*****************************************************************************
2  * zvbi.c : VBI and Teletext PES demux and decoder using libzvbi
3  *****************************************************************************
4  * Copyright (C) 2007, M2X
5  * $Id: $
6  *
7  * Authors: Derk-Jan Hartman <djhartman at m2x dot nl>
8  *          Jean-Paul Saman <jpsaman at m2x dot nl>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24 /*****************************************************************************
25  *
26  * information on teletext format can be found here :
27  * http://pdc.ro.nu/teletext.html
28  *
29  *****************************************************************************/
30
31 /* This module implements:
32  * ETSI EN 301 775: VBI data in PES
33  * ETSI EN 300 472: EBU Teletext data in PES
34  * ETSI EN 300 706: Enhanced Teletext (libzvbi)
35  * ETSI EN 300 231: Video Programme System [VPS] (libzvbi)
36  * ETSI EN 300 294: 625-line Wide Screen Signaling [WSS] (libzvbi)
37  * EIA-608 Revision A: Closed Captioning [CC] (libzvbi)
38  */
39
40 #include <vlc/vlc.h>
41 #include <assert.h>
42 #include <stdint.h>
43 #include <libzvbi.h>
44
45 #include "vlc_vout.h"
46 #include "vlc_bits.h"
47 #include "vlc_codec.h"
48 #include "vlc_image.h"
49
50 typedef enum {
51     DATA_UNIT_EBU_TELETEXT_NON_SUBTITLE     = 0x02,
52     DATA_UNIT_EBU_TELETEXT_SUBTITLE         = 0x03,
53     DATA_UNIT_EBU_TELETEXT_INVERTED         = 0x0C,
54
55     DATA_UNIT_ZVBI_WSS_CPR1204              = 0xB4,
56     DATA_UNIT_ZVBI_CLOSED_CAPTION_525       = 0xB5,
57     DATA_UNIT_ZVBI_MONOCHROME_SAMPLES_525   = 0xB6,
58
59     DATA_UNIT_VPS                           = 0xC3,
60     DATA_UNIT_WSS                           = 0xC4,
61     DATA_UNIT_CLOSED_CAPTION                = 0xC5,
62     DATA_UNIT_MONOCHROME_SAMPLES            = 0xC6,
63
64     DATA_UNIT_STUFFING                      = 0xFF,
65 } data_unit_id;
66
67 /*****************************************************************************
68  * Module descriptor.
69  *****************************************************************************/
70 static int  Open ( vlc_object_t * );
71 static void Close( vlc_object_t * );
72 static subpicture_t *Decode( decoder_t *, block_t ** );
73
74 #define PAGE_TEXT N_("Teletext page")
75 #define PAGE_LONGTEXT N_("Open the indicated Teletext page." \
76         "Default page is index 100")
77
78 #define OPAQUE_TEXT N_("Text is always opaque")
79 #define OPAQUE_LONGTEXT N_("Setting vbi-opaque to false " \
80         "makes the boxed text transparent." )
81
82 #define POS_TEXT N_("Teletext alignment")
83 #define POS_LONGTEXT N_( \
84   "You can enforce the teletext position on the video " \
85   "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
86   "also use combinations of these values, eg. 6 = top-right).")
87
88 #define TELX_TEXT N_("Teletext text subtitles")
89 #define TELX_LONGTEXT N_( "Output teletext subtitles as text " \
90   "instead of as RGBA" )
91
92 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
93 static const char *ppsz_pos_descriptions[] =
94 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
95   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
96
97 vlc_module_begin();
98     set_description( _("VBI and Teletext decoder") );
99     set_shortname( "VBI & Teletext" );
100     set_capability( "decoder", 51 );
101     set_category( CAT_INPUT );
102     set_subcategory( SUBCAT_INPUT_SCODEC );
103     set_callbacks( Open, Close );
104
105     add_integer( "vbi-page", 100, NULL,
106                  PAGE_TEXT, PAGE_LONGTEXT, VLC_FALSE );
107     add_bool( "vbi-opaque", VLC_TRUE, NULL,
108                  OPAQUE_TEXT, OPAQUE_LONGTEXT, VLC_FALSE );
109     add_integer( "vbi-position", 4, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE );
110         change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );
111     add_bool( "vbi-text", VLC_FALSE, NULL,
112               TELX_TEXT, TELX_LONGTEXT, VLC_FALSE );
113 vlc_module_end();
114
115 /****************************************************************************
116  * Local structures
117  ****************************************************************************/
118
119 struct decoder_sys_t
120 {
121     vbi_decoder *           p_vbi_dec;
122     vbi_dvb_demux *         p_dvb_demux;
123     unsigned int            i_wanted_page;
124     unsigned int            i_last_page;
125     vlc_bool_t              b_update;
126     vlc_bool_t              b_opaque;
127
128     /* Subtitles as text */
129     vlc_bool_t              b_text;
130
131     /* Positioning of Teletext images */
132     int                     i_align;
133
134     /* Misc */
135 #ifdef HAVE_FFMPEG_SWSCALE_H
136     image_handler_t         *p_image;
137 #endif
138 };
139
140 static void event_handler( vbi_event *ev, void *user_data );
141 static int RequestPage( vlc_object_t *p_this, char const *psz_cmd,
142                         vlc_value_t oldval, vlc_value_t newval, void *p_data );
143 static int OpaquePage( decoder_t *p_dec, vbi_page p_page, video_format_t fmt,
144                         picture_t **p_src );
145 static int Opaque_32bpp( decoder_t *p_dec, vbi_page p_page, video_format_t fmt,
146                         picture_t **p_src );
147 static int Opaque_8bpp( decoder_t *p_dec, vbi_page p_page, video_format_t fmt,
148                         picture_t **p_src );
149
150 static int Opaque( vlc_object_t *p_this, char const *psz_cmd,
151                    vlc_value_t oldval, vlc_value_t newval, void *p_data );
152 static int Position( vlc_object_t *p_this, char const *psz_cmd,
153                      vlc_value_t oldval, vlc_value_t newval, void *p_data );
154
155 /*****************************************************************************
156  * Open: probe the decoder and return score
157  *****************************************************************************
158  * Tries to launch a decoder and return score so that the interface is able
159  * to chose.
160  *****************************************************************************/
161 static int Open( vlc_object_t *p_this )
162 {
163     decoder_t     *p_dec = (decoder_t *) p_this;
164     decoder_sys_t *p_sys = NULL;
165
166     if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','e','l','x') )
167     {
168         return VLC_EGENERIC;
169     }
170
171     p_dec->pf_decode_sub = Decode;
172     p_sys = p_dec->p_sys = malloc( sizeof(decoder_sys_t) );
173     if( p_sys == NULL )
174     {
175         msg_Err( p_dec, "out of memory" );
176         return VLC_ENOMEM;
177     }
178     memset( p_sys, 0, sizeof(decoder_sys_t) );
179
180 #ifdef HAVE_FFMPEG_SWSCALE_H
181     p_sys->p_image = image_HandlerCreate( VLC_OBJECT(p_dec) );
182     if( !p_sys->p_image )
183     {
184         free( p_sys );
185         msg_Err( p_dec, "out of memory" );
186         return VLC_ENOMEM;
187     }
188 #endif
189
190     p_sys->b_update = VLC_FALSE;
191     p_sys->p_vbi_dec = vbi_decoder_new();
192     p_sys->p_dvb_demux = vbi_dvb_pes_demux_new( NULL, NULL );
193
194     if( (p_sys->p_vbi_dec == NULL) || (p_sys->p_dvb_demux == NULL) )
195     {
196         msg_Err( p_dec, "VBI decoder/demux could not be created." );
197         Close( p_this );
198         return VLC_ENOMEM;
199     }
200
201     vbi_event_handler_register( p_sys->p_vbi_dec, VBI_EVENT_TTX_PAGE |
202                                 VBI_EVENT_CAPTION | VBI_EVENT_NETWORK |
203                                 VBI_EVENT_ASPECT | VBI_EVENT_PROG_INFO,
204                                 event_handler, p_dec );
205
206     /* Create the var on vlc_global. */
207     p_sys->i_wanted_page = var_CreateGetInteger( p_dec->p_libvlc, "vbi-page" );
208     var_AddCallback( p_dec->p_libvlc, "vbi-page",
209                      RequestPage, p_sys );
210
211     p_sys->b_opaque = var_CreateGetBool( p_dec, "vbi-opaque" );
212     var_AddCallback( p_dec, "vbi-opaque", Opaque, p_sys );
213
214     p_sys->i_align = var_CreateGetInteger( p_dec, "vbi-position" );
215     var_AddCallback( p_dec, "vbi-position", Position, p_sys );
216
217     p_sys->b_text = var_CreateGetBool( p_dec, "vbi-text" );
218 //    var_AddCallback( p_dec, "vbi-text", Text, p_sys );
219
220     es_format_Init( &p_dec->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) );
221     if( p_sys->b_text )
222         p_dec->fmt_out.video.i_chroma = VLC_FOURCC('T','E','X','T');
223     else
224 #ifdef HAVE_FFMPEG_SWSCALE_H
225         p_dec->fmt_out.video.i_chroma = VLC_FOURCC('Y','U','V','A');
226 #else
227         p_dec->fmt_out.video.i_chroma = VLC_FOURCC('R','G','B','A');
228 #endif
229     return VLC_SUCCESS;
230 }
231
232 /*****************************************************************************
233  * Close:
234  *****************************************************************************/
235 static void Close( vlc_object_t *p_this )
236 {
237     decoder_t     *p_dec = (decoder_t*) p_this;
238     decoder_sys_t *p_sys = p_dec->p_sys;
239
240 #ifdef HAVE_FFMPEG_SWSCALE_H
241     if( p_sys->p_image ) image_HandlerDelete( p_sys->p_image );
242 #endif
243     if( p_sys->p_vbi_dec ) vbi_decoder_delete( p_sys->p_vbi_dec );
244     if( p_sys->p_dvb_demux ) vbi_dvb_demux_delete( p_sys->p_dvb_demux );
245     free( p_sys );
246 }
247
248 #define MAX_SLICES 32
249
250 /*****************************************************************************
251  * Decode:
252  *****************************************************************************/
253 static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
254 {
255     decoder_sys_t   *p_sys = (decoder_sys_t *) p_dec->p_sys;
256     block_t         *p_block;
257     subpicture_t    *p_spu = NULL;
258     video_format_t  fmt;
259     vlc_bool_t      b_cached = VLC_FALSE;
260     vbi_page        p_page;
261     const uint8_t   *p_pos;
262     unsigned int    i_left;
263
264     if( (pp_block == NULL) || (*pp_block == NULL) )
265         return NULL;
266
267     p_block = *pp_block;
268     *pp_block = NULL;
269
270     p_pos = p_block->p_buffer;
271     i_left = p_block->i_buffer;
272
273     while( i_left > 0 )
274     {
275         vbi_sliced      p_sliced[MAX_SLICES];
276         unsigned int    i_lines = 0;
277         int64_t         i_pts;
278
279         i_lines = vbi_dvb_demux_cor( p_sys->p_dvb_demux, p_sliced,
280                                      MAX_SLICES, &i_pts, &p_pos, &i_left );
281
282         if( i_lines > 0 )
283             vbi_decode( p_sys->p_vbi_dec, p_sliced, i_lines, i_pts / 90000.0 );
284     }
285
286     /* Try to see if the page we want is in the cache yet */
287     b_cached = vbi_fetch_vt_page( p_sys->p_vbi_dec, &p_page,
288                                   vbi_dec2bcd( p_sys->i_wanted_page ),
289                                   VBI_ANY_SUBNO, VBI_WST_LEVEL_3p5,
290                                   25, FALSE );
291
292     if( !b_cached )
293         goto error;
294
295     if( ( p_sys->i_wanted_page == p_sys->i_last_page ) &&
296         ( p_sys->b_update != VLC_TRUE ) )
297         goto error;
298
299     p_sys->b_update = VLC_FALSE;
300     p_sys->i_last_page = p_sys->i_wanted_page;
301 #if 0
302     msg_Dbg( p_dec, "we now have page: %d ready for display",
303              p_sys->i_wanted_page );
304 #endif
305     /* If there is a page or sub to render, then we do that here */
306     /* Create the subpicture unit */
307     p_spu = p_dec->pf_spu_buffer_new( p_dec );
308     if( !p_spu )
309     {
310         msg_Warn( p_dec, "can't get spu buffer" );
311         goto error;
312     }
313
314     /* Create a new subpicture region */
315     memset( &fmt, 0, sizeof(video_format_t) );
316     fmt.i_chroma = p_sys->b_text ? VLC_FOURCC('T','E','X','T') :
317 #ifdef HAVE_FFMPEG_SWSCALE_H
318                                    VLC_FOURCC('Y','U','V','A');
319 #else
320                                    VLC_FOURCC('R','G','B','A');
321 #endif
322     fmt.i_aspect = p_sys->b_text ? 0 : VOUT_ASPECT_FACTOR;
323     fmt.i_sar_num = fmt.i_sar_den = 1;
324     fmt.i_width = fmt.i_visible_width = p_page.columns * 12;
325     fmt.i_height = fmt.i_visible_height = p_page.rows * 10;
326     fmt.i_bits_per_pixel = p_sys->b_text ? 0 : 32;
327     fmt.i_x_offset = fmt.i_y_offset = 0;
328
329     p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_dec), &fmt );
330     if( p_spu->p_region == NULL )
331     {
332         msg_Err( p_dec, "cannot allocate SPU region" );
333         goto error;
334     }
335
336     p_spu->p_region->i_x = 0;
337     p_spu->p_region->i_y = 0;
338     p_spu->p_region->i_align = SUBPICTURE_ALIGN_BOTTOM;
339
340     /* Normal text subs, easy markup */
341     p_spu->i_flags = SUBPICTURE_ALIGN_BOTTOM;
342
343     p_spu->i_start = (mtime_t) p_block->i_dts;
344     p_spu->i_stop = (mtime_t) 0;
345     p_spu->b_ephemer = VLC_TRUE;
346     p_spu->b_absolute = VLC_FALSE;
347     p_spu->b_pausable = VLC_TRUE;
348     p_spu->i_width = fmt.i_width;
349     p_spu->i_height = fmt.i_height;
350     p_spu->i_original_picture_width = p_page.columns * 12;
351     p_spu->i_original_picture_height = p_page.rows * 10;
352
353 #ifdef WORDS_BIGENDIAN
354 # define ZVBI_PIXFMT_RGBA32 VBI_PIXFMT_RGBA32_BE
355 #else
356 # define ZVBI_PIXFMT_RGBA32 VBI_PIXFMT_RGBA32_LE
357 #endif
358
359     if( p_sys->b_text )
360     {
361         unsigned int i_textsize = 7000;
362         int i_total;
363         char p_text[7000];
364
365         i_total = vbi_print_page_region( &p_page, p_text, i_textsize,
366                         "UTF-8", 0, 0, 0, 0, p_page.columns, p_page.rows );
367         p_text[i_total] = '\0';
368         /* Strip off the pagenumber */
369         if( i_total <= 40 ) goto error;
370         p_spu->p_region->psz_text = strdup( &p_text[8] );
371
372         p_spu->p_region->fmt.i_height = p_spu->p_region->fmt.i_visible_height = p_page.rows + 1;
373         msg_Dbg( p_dec, "page %x-%x(%d)\n%s", p_page.pgno, p_page.subno, i_total, p_text );
374     }
375     else
376     {
377 #ifdef HAVE_FFMPEG_SWSCALE_H
378         video_format_t fmt_in;
379         picture_t *p_pic, *p_dest;
380
381         p_pic = ( picture_t * ) malloc( sizeof( picture_t ) );
382         if( !p_pic )
383         {
384             msg_Err( p_dec, "out of memory" );
385             goto error;
386         }
387
388         memset( &fmt_in, 0, sizeof( video_format_t ) );
389         memset( p_pic, 0, sizeof( picture_t ) );
390
391         fmt_in = fmt;
392         fmt_in.i_chroma = VLC_FOURCC('R','G','B','A');
393
394         vout_AllocatePicture( VLC_OBJECT(p_dec), p_pic, fmt_in.i_chroma,
395                         fmt_in.i_width, fmt_in.i_height, fmt_in.i_aspect );
396         if( !p_pic->i_planes )
397         {
398             free( p_pic->p_data_orig );
399             free( p_pic );
400             goto error;
401         }
402
403         vbi_draw_vt_page( &p_page, ZVBI_PIXFMT_RGBA32,
404                           p_pic->p->p_pixels, 1, 1 );
405
406         p_pic->p->i_lines = p_page.rows * 10;
407         p_pic->p->i_pitch = p_page.columns * 12 * 4;
408
409 #if 0
410         msg_Dbg( p_dec, "page %x-%x(%d,%d)",
411                  p_page.pgno, p_page.subno,
412                  p_page.rows, p_page.columns );
413 #endif
414         p_dest = image_Convert( p_sys->p_image, p_pic, &fmt_in,
415                                 &p_spu->p_region->fmt );
416         if( !p_dest )
417         {
418             free( p_pic->p_data_orig );
419             free( p_pic );
420             msg_Err( p_dec, "chroma conversion failed" );
421             goto error;
422         }
423         OpaquePage( p_dec, p_page, p_spu->p_region->fmt, &p_dest );
424         vout_CopyPicture( VLC_OBJECT(p_dec), &(p_spu->p_region->picture),
425                           p_dest );
426
427         free( p_pic->p_data_orig );
428         free( p_pic );
429
430         free( p_dest->p_data_orig );
431         free( p_dest );
432 #else
433         picture_t *p_pic;
434
435         vbi_draw_vt_page( &p_page, ZVBI_PIXFMT_RGBA32,
436                           p_spu->p_region->picture.p->p_pixels, 1, 1 );
437
438         p_spu->p_region->picture.p->i_lines = p_page.rows * 10;
439         p_spu->p_region->picture.p->i_pitch = p_page.columns * 12 * 4;
440
441         p_pic = &(p_spu->p_region->picture);
442         OpaquePage( p_dec, p_page, fmt, &p_pic );
443 #endif
444     }
445
446 #undef PIXFMT_RGBA32
447
448     vbi_unref_page( &p_page );
449     block_Release( p_block );
450     return p_spu;
451
452 error:
453     vbi_unref_page( &p_page );
454     if( p_spu != NULL )
455     {
456         p_dec->pf_spu_buffer_del( p_dec, p_spu );
457         p_spu = NULL;
458     }
459
460     block_Release( p_block );
461     return NULL;
462 }
463
464 static void event_handler( vbi_event *ev, void *user_data )
465 {
466     decoder_t *p_dec        = (decoder_t *)user_data;
467     decoder_sys_t *p_sys    = p_dec->p_sys;
468
469     if( ev->type == VBI_EVENT_TTX_PAGE )
470     {
471         /* msg_Dbg( p_dec, "Page %03x.%02x ",
472                     ev->ev.ttx_page.pgno,
473                     ev->ev.ttx_page.subno & 0xFF);
474         */
475         if( p_sys->i_last_page == vbi_bcd2dec( ev->ev.ttx_page.pgno ) )
476             p_sys->b_update = VLC_TRUE;
477
478         if( ev->ev.ttx_page.clock_update )
479             msg_Dbg( p_dec, "clock" );
480 /*        if( ev->ev.ttx_page.header_update )
481             msg_Dbg( p_dec, "header" );
482 */
483     }
484     else if( ev->type == VBI_EVENT_CAPTION )
485         msg_Dbg( p_dec, "Caption line: %x", ev->ev.caption.pgno );
486     else if( ev->type == VBI_EVENT_NETWORK )
487         msg_Dbg( p_dec, "Network change" );
488     else if( ev->type == VBI_EVENT_ASPECT )
489         msg_Dbg( p_dec, "Aspect update" );
490     else if( ev->type == VBI_EVENT_NETWORK )
491         msg_Dbg( p_dec, "Program info received" );
492 }
493
494 static int OpaquePage( decoder_t *p_dec, vbi_page p_page,
495                        video_format_t fmt, picture_t **p_src )
496 {
497     int result = VLC_EGENERIC;
498
499     /* Kludge since zvbi doesn't provide an option to specify opacity. */
500     switch( fmt.i_chroma )
501     {
502         case VLC_FOURCC('R','G','B','A' ):
503             result = Opaque_32bpp( p_dec, p_page, fmt, p_src );
504             break;
505         case VLC_FOURCC('Y','U','V','A' ):
506             result = Opaque_8bpp( p_dec, p_page, fmt, p_src );
507             break;
508         default:
509             msg_Err( p_dec, "chroma not supported %4.4s", (char *)&fmt.i_chroma );
510             return VLC_EGENERIC;
511     }
512     return result;
513 }
514
515 static int Opaque_32bpp( decoder_t *p_dec, vbi_page p_page,
516                          video_format_t fmt, picture_t **p_src )
517 {
518     decoder_sys_t   *p_sys = (decoder_sys_t *) p_dec->p_sys;
519     uint32_t        *p_begin, *p_end;
520     unsigned int    x = 0, y = 0;
521     vbi_opacity     opacity;
522
523     /* Kludge since zvbi doesn't provide an option to specify opacity. */
524     switch( fmt.i_chroma )
525     {
526         case VLC_FOURCC('R','G','B','A' ):
527             p_begin = (uint32_t *)(*p_src)->p->p_pixels;
528             p_end   = (uint32_t *)(*p_src)->p->p_pixels +
529                     ( fmt.i_width * fmt.i_height );
530             break;
531         default:
532             msg_Err( p_dec, "chroma not supported %4.4s", (char *)&fmt.i_chroma );
533             return VLC_EGENERIC;
534     }
535
536     for( ; p_begin < p_end; p_begin++ )
537     {
538         opacity = p_page.text[ y / 10 * p_page.columns + x / 12 ].opacity;
539         switch( opacity )
540         {
541         /* Show video instead of this character */
542         case VBI_TRANSPARENT_SPACE:
543             *p_begin = 0;
544             break;
545         /* To make the boxed text "closed captioning" transparent
546          * change VLC_TRUE to VLC_FALSE.
547          */
548         case VBI_OPAQUE:
549             if( p_sys->b_opaque )
550                 break;
551         /* Full text transparency. only foreground color is show */
552         case VBI_TRANSPARENT_FULL:
553             *p_begin = 0;
554             break;
555         /* Transparency for boxed text */
556         case VBI_SEMI_TRANSPARENT:
557             if( (*p_begin & 0xffffff00) == 0xff )
558                 *p_begin = 0;
559             break;
560         }
561         x++;
562         if( x >= fmt.i_width )
563         {
564             x = 0;
565             y++;
566         }
567     }
568     /* end of kludge */
569     return VLC_SUCCESS;
570 }
571
572 static int Opaque_8bpp( decoder_t *p_dec, vbi_page p_page,
573                         video_format_t fmt, picture_t **p_src )
574 {
575     decoder_sys_t   *p_sys = (decoder_sys_t *) p_dec->p_sys;
576     uint8_t         *p_begin, *p_end;
577     uint32_t        i_width = 0;
578     unsigned int    x = 0, y = 0;
579     vbi_opacity     opacity;
580
581     /* Kludge since zvbi doesn't provide an option to specify opacity. */
582     switch( fmt.i_chroma )
583     {
584         case VLC_FOURCC('Y','U','V','A' ):
585             p_begin = (uint8_t *)(*p_src)->p[A_PLANE].p_pixels;
586             p_end   = (uint8_t *)(*p_src)->p[A_PLANE].p_pixels +
587                       ( fmt.i_height * (*p_src)->p[A_PLANE].i_pitch );
588             i_width = (*p_src)->p[A_PLANE].i_pitch;
589             break;
590         default:
591             msg_Err( p_dec, "chroma not supported %4.4s", (char *)&fmt.i_chroma );
592             return VLC_EGENERIC;
593     }
594
595     for( ; p_begin < p_end; p_begin++ )
596     {
597         opacity = p_page.text[ y / 10 * p_page.columns + x / 12 ].opacity;
598         switch( opacity )
599         {
600         /* Show video instead of this character */
601         case VBI_TRANSPARENT_SPACE:
602             *p_begin = 0;
603             break;
604         /* To make the boxed text "closed captioning" transparent
605          * change VLC_TRUE to VLC_FALSE.
606          */
607         case VBI_OPAQUE:
608             if( p_sys->b_opaque )
609                 break;
610         /* Full text transparency. only foreground color is show */
611         case VBI_TRANSPARENT_FULL:
612             *p_begin = 0;
613             break;
614         /* Transparency for boxed text */
615         case VBI_SEMI_TRANSPARENT:
616             if( (*p_begin & 0xffffff00) == 0xff )
617                 *p_begin = 0;
618             break;
619         }
620         x++;
621         if( x >= i_width )
622         {
623             x = 0;
624             y++;
625         }
626     }
627     /* end of kludge */
628     return VLC_SUCCESS;
629 }
630
631 static int RequestPage( vlc_object_t *p_this, char const *psz_cmd,
632                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
633 {
634     decoder_sys_t   *p_sys = p_data;
635
636     if( (newval.i_int > 0) && (newval.i_int < 999) )
637         p_sys->i_wanted_page = newval.i_int;
638
639     return VLC_SUCCESS;
640 }
641
642 static int Opaque( vlc_object_t *p_this, char const *psz_cmd,
643                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
644 {
645     decoder_sys_t *p_sys = p_data;
646
647     if( p_sys )
648         p_sys->b_opaque = newval.b_bool;
649     return VLC_SUCCESS;
650 }
651
652 static int Position( vlc_object_t *p_this, char const *psz_cmd,
653                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
654 {
655     decoder_sys_t *p_sys = p_data;
656
657     if( p_sys )
658         p_sys->i_align = newval.i_int;
659     return VLC_SUCCESS;
660 }