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