]> git.sesse.net Git - vlc/blob - modules/codec/zvbi.c
macosx: fixed menubar appearance in fullscreen mode by partially reverting [46c93c9cc...
[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_common.h>
45 #include <vlc_plugin.h>
46 #include <assert.h>
47 #include <libzvbi.h>
48
49 #include <vlc_vout.h>
50 #include <vlc_codec.h>
51 #include <vlc_osd.h>
52
53 /*****************************************************************************
54  * Module descriptor.
55  *****************************************************************************/
56 static int  Open ( vlc_object_t * );
57 static void Close( vlc_object_t * );
58
59 #define PAGE_TEXT N_("Teletext page")
60 #define PAGE_LONGTEXT N_("Open the indicated Teletext page." \
61         "Default page is index 100")
62
63 #define OPAQUE_TEXT N_("Text is always opaque")
64 #define OPAQUE_LONGTEXT N_("Setting vbi-opaque to false " \
65         "makes the boxed text transparent." )
66
67 #define POS_TEXT N_("Teletext alignment")
68 #define POS_LONGTEXT N_( \
69   "You can enforce the teletext position on the video " \
70   "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
71   "also use combinations of these values, eg. 6 = top-right).")
72
73 #define TELX_TEXT N_("Teletext text subtitles")
74 #define TELX_LONGTEXT N_( "Output teletext subtitles as text " \
75   "instead of as RGBA" )
76
77 static const int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
78 static const char *const ppsz_pos_descriptions[] =
79 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
80   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
81
82 vlc_module_begin ()
83     set_description( N_("VBI and Teletext decoder") )
84     set_shortname( N_("VBI & Teletext") )
85     set_capability( "decoder", 51 )
86     set_category( CAT_INPUT )
87     set_subcategory( SUBCAT_INPUT_SCODEC )
88     set_callbacks( Open, Close )
89
90     add_integer( "vbi-page", 100, NULL,
91                  PAGE_TEXT, PAGE_LONGTEXT, false )
92     add_bool( "vbi-opaque", true, NULL,
93                  OPAQUE_TEXT, OPAQUE_LONGTEXT, false )
94     add_integer( "vbi-position", 4, NULL, POS_TEXT, POS_LONGTEXT, false )
95         change_integer_list( pi_pos_values, ppsz_pos_descriptions, NULL );
96     add_bool( "vbi-text", false, NULL,
97               TELX_TEXT, TELX_LONGTEXT, false )
98 vlc_module_end ()
99
100 /****************************************************************************
101  * Local structures
102  ****************************************************************************/
103
104 // #define ZVBI_DEBUG
105
106 //Guessing table for missing "default region triplet"
107 static const int pi_default_triplet[] = {
108  0, 0,           // slo cze
109  8,              // pol
110  24,24,24,24,    //ssc scr slv rum
111  32,32,32,32,32, //est lit rus bul ukr
112  48,48,          //gre ell
113  64,             //ara
114  88,             //heb
115  16 };           //default
116 static const char *const ppsz_default_triplet[] = {
117  "slo", "cze",
118  "pol",
119  "ssc", "scr", "slv", "rum",
120  "est", "lit", "rus", "bul", "ukr",
121  "gre", "ell",
122  "ara",
123  "heb",
124  NULL
125 };
126
127 typedef enum {
128     ZVBI_KEY_RED    = 'r' << 16,
129     ZVBI_KEY_GREEN  = 'g' << 16,
130     ZVBI_KEY_YELLOW = 'y' << 16,
131     ZVBI_KEY_BLUE   = 'b' << 16,
132     ZVBI_KEY_INDEX  = 'i' << 16,
133 } ttxt_key_id;
134
135 typedef enum {
136     DATA_UNIT_EBU_TELETEXT_NON_SUBTITLE     = 0x02,
137     DATA_UNIT_EBU_TELETEXT_SUBTITLE         = 0x03,
138     DATA_UNIT_EBU_TELETEXT_INVERTED         = 0x0C,
139
140     DATA_UNIT_ZVBI_WSS_CPR1204              = 0xB4,
141     DATA_UNIT_ZVBI_CLOSED_CAPTION_525       = 0xB5,
142     DATA_UNIT_ZVBI_MONOCHROME_SAMPLES_525   = 0xB6,
143
144     DATA_UNIT_VPS                           = 0xC3,
145     DATA_UNIT_WSS                           = 0xC4,
146     DATA_UNIT_CLOSED_CAPTION                = 0xC5,
147     DATA_UNIT_MONOCHROME_SAMPLES            = 0xC6,
148
149     DATA_UNIT_STUFFING                      = 0xFF,
150 } data_unit_id;
151
152 struct decoder_sys_t
153 {
154     vbi_decoder *     p_vbi_dec;
155     vbi_dvb_demux *   p_dvb_demux;
156     unsigned int      i_last_page;
157     bool              b_update;
158     bool              b_text;   /* Subtitles as text */
159
160     vlc_mutex_t       lock; /* Lock to protect the following variables */
161     /* Positioning of Teletext images */
162     int               i_align;
163     /* */
164     unsigned int      i_wanted_page;
165     unsigned int      i_wanted_subpage;
166     /* */
167     bool              b_opaque;
168     struct {
169         int pgno, subno;
170     }                 nav_link[6];
171     int               i_key[3];
172 };
173
174 static subpicture_t *Decode( decoder_t *, block_t ** );
175
176 static subpicture_t *Subpicture( decoder_t *p_dec, video_format_t *p_fmt,
177                                  bool b_text,
178                                  int i_columns, int i_rows,
179                                  int i_align, mtime_t i_pts );
180
181 static void EventHandler( vbi_event *ev, void *user_data );
182 static int OpaquePage( picture_t *p_src, const vbi_page p_page,
183                        const video_format_t fmt, bool b_opaque );
184
185 /* Properties callbacks */
186 static int RequestPage( vlc_object_t *p_this, char const *psz_cmd,
187                         vlc_value_t oldval, vlc_value_t newval, void *p_data );
188 static int Opaque( vlc_object_t *p_this, char const *psz_cmd,
189                    vlc_value_t oldval, vlc_value_t newval, void *p_data );
190 static int Position( vlc_object_t *p_this, char const *psz_cmd,
191                      vlc_value_t oldval, vlc_value_t newval, void *p_data );
192 static int EventKey( vlc_object_t *p_this, char const *psz_cmd,
193                      vlc_value_t oldval, vlc_value_t newval, void *p_data );
194
195 /*****************************************************************************
196  * Open: probe the decoder and return score
197  *****************************************************************************
198  * Tries to launch a decoder and return score so that the interface is able
199  * to chose.
200  *****************************************************************************/
201 static int Open( vlc_object_t *p_this )
202 {
203     decoder_t     *p_dec = (decoder_t *) p_this;
204     decoder_sys_t *p_sys = NULL;
205
206     if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','e','l','x') )
207         return VLC_EGENERIC;
208
209     p_dec->pf_decode_sub = Decode;
210     p_sys = p_dec->p_sys = malloc( sizeof(decoder_sys_t) );
211     if( p_sys == NULL )
212         return VLC_ENOMEM;
213     memset( p_sys, 0, sizeof(decoder_sys_t) );
214
215     p_sys->i_key[0] = p_sys->i_key[1] = p_sys->i_key[2] = '*' - '0';
216     p_sys->b_update = false;
217     p_sys->p_vbi_dec = vbi_decoder_new();
218     p_sys->p_dvb_demux = vbi_dvb_pes_demux_new( NULL, NULL );
219     vlc_mutex_init( &p_sys->lock );
220
221     if( (p_sys->p_vbi_dec == NULL) || (p_sys->p_dvb_demux == NULL) )
222     {
223         msg_Err( p_dec, "VBI decoder/demux could not be created." );
224         Close( p_this );
225         return VLC_ENOMEM;
226     }
227
228     /* Some broadcasters in countries with level 1 and level 1.5 still not send a G0 to do 
229      * matches against table 32 of ETSI 300 706. We try to do some best effort guessing
230      * This is not perfect, but might handle some cases where we know the vbi language 
231      * is known. It would be better if people started sending G0 */
232     for( int i = 0; ppsz_default_triplet[i] != NULL; i++ )
233     {
234         if( p_dec->fmt_in.psz_language && !strcasecmp( p_dec->fmt_in.psz_language, ppsz_default_triplet[i] ) )
235         {
236             vbi_teletext_set_default_region( p_sys->p_vbi_dec, pi_default_triplet[i]);
237             msg_Dbg( p_dec, "overwriting default zvbi region: %d", pi_default_triplet[i] );
238         }
239     }
240
241     vbi_event_handler_register( p_sys->p_vbi_dec, VBI_EVENT_TTX_PAGE | VBI_EVENT_NETWORK |
242 #ifdef ZVBI_DEBUG
243                                 VBI_EVENT_CAPTION | VBI_EVENT_TRIGGER |
244                                 VBI_EVENT_ASPECT | VBI_EVENT_PROG_INFO | VBI_EVENT_NETWORK_ID |
245 #endif
246                                 0 , EventHandler, p_dec );
247
248     /* Create the var on vlc_global. */
249     p_sys->i_wanted_page = var_CreateGetInteger( p_dec, "vbi-page" );
250     var_AddCallback( p_dec, "vbi-page",
251                      RequestPage, p_sys );
252
253     /* Check if the Teletext track has a known "initial page". */
254     if( p_sys->i_wanted_page == 100 && p_dec->fmt_in.subs.teletext.i_magazine != -1 )
255     {
256         p_sys->i_wanted_page = 100 * p_dec->fmt_in.subs.teletext.i_magazine +
257                                vbi_bcd2dec( p_dec->fmt_in.subs.teletext.i_page );
258         var_SetInteger( p_dec, "vbi-page", p_sys->i_wanted_page );
259     }
260     p_sys->i_wanted_subpage = VBI_ANY_SUBNO;
261
262     p_sys->b_opaque = var_CreateGetBool( p_dec, "vbi-opaque" );
263     var_AddCallback( p_dec, "vbi-opaque", Opaque, p_sys );
264
265     p_sys->i_align = var_CreateGetInteger( p_dec, "vbi-position" );
266     var_AddCallback( p_dec, "vbi-position", Position, p_sys );
267
268     p_sys->b_text = var_CreateGetBool( p_dec, "vbi-text" );
269 //    var_AddCallback( p_dec, "vbi-text", Text, p_sys );
270
271     /* Listen for keys */
272     var_AddCallback( p_dec->p_libvlc, "key-pressed", EventKey, p_dec );
273
274     es_format_Init( &p_dec->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) );
275     if( p_sys->b_text )
276         p_dec->fmt_out.video.i_chroma = VLC_FOURCC('T','E','X','T');
277     else
278         p_dec->fmt_out.video.i_chroma = VLC_FOURCC('R','G','B','A');
279     return VLC_SUCCESS;
280 }
281
282 /*****************************************************************************
283  * Close:
284  *****************************************************************************/
285 static void Close( vlc_object_t *p_this )
286 {
287     decoder_t     *p_dec = (decoder_t*) p_this;
288     decoder_sys_t *p_sys = p_dec->p_sys;
289
290     var_DelCallback( p_dec, "vbi-position", Position, p_sys );
291     var_DelCallback( p_dec, "vbi-opaque", Opaque, p_sys );
292     var_DelCallback( p_dec, "vbi-page", RequestPage, p_sys );
293     var_DelCallback( p_dec->p_libvlc, "key-pressed", EventKey, p_dec );
294
295     vlc_mutex_destroy( &p_sys->lock );
296
297     if( p_sys->p_vbi_dec )
298         vbi_decoder_delete( p_sys->p_vbi_dec );
299     if( p_sys->p_dvb_demux )
300         vbi_dvb_demux_delete( p_sys->p_dvb_demux );
301     free( p_sys );
302 }
303
304 #define MAX_SLICES 32
305
306 #ifdef WORDS_BIGENDIAN
307 # define ZVBI_PIXFMT_RGBA32 VBI_PIXFMT_RGBA32_BE
308 #else
309 # define ZVBI_PIXFMT_RGBA32 VBI_PIXFMT_RGBA32_LE
310 #endif
311
312
313 /*****************************************************************************
314  * Decode:
315  *****************************************************************************/
316 static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
317 {
318     decoder_sys_t   *p_sys = p_dec->p_sys;
319     block_t         *p_block;
320     subpicture_t    *p_spu = NULL;
321     video_format_t  fmt;
322     bool            b_cached = false;
323     vbi_page        p_page;
324     const uint8_t   *p_pos;
325     unsigned int    i_left;
326
327     if( (pp_block == NULL) || (*pp_block == NULL) )
328         return NULL;
329
330     p_block = *pp_block;
331     *pp_block = NULL;
332
333     p_pos = p_block->p_buffer;
334     i_left = p_block->i_buffer;
335
336     while( i_left > 0 )
337     {
338         vbi_sliced      p_sliced[MAX_SLICES];
339         unsigned int    i_lines = 0;
340         int64_t         i_pts;
341
342         i_lines = vbi_dvb_demux_cor( p_sys->p_dvb_demux, p_sliced,
343                                      MAX_SLICES, &i_pts, &p_pos, &i_left );
344
345         if( i_lines > 0 )
346             vbi_decode( p_sys->p_vbi_dec, p_sliced, i_lines, i_pts / 90000.0 );
347     }
348
349     /* */
350     vlc_mutex_lock( &p_sys->lock );
351     const int i_align = p_sys->i_align;
352     const unsigned int i_wanted_page = p_sys->i_wanted_page;
353     const unsigned int i_wanted_subpage = p_sys->i_wanted_subpage;
354     const bool b_opaque = p_sys->b_opaque;
355     vlc_mutex_unlock( &p_sys->lock );
356
357     /* Try to see if the page we want is in the cache yet */
358     memset( &p_page, 0, sizeof(vbi_page) );
359     b_cached = vbi_fetch_vt_page( p_sys->p_vbi_dec, &p_page,
360                                   vbi_dec2bcd( i_wanted_page ),
361                                   i_wanted_subpage, VBI_WST_LEVEL_3p5,
362                                   25, true );
363
364     if( i_wanted_page == p_sys->i_last_page && !p_sys->b_update )
365         goto error;
366
367     if( !b_cached )
368     {
369         if( p_sys->i_last_page != i_wanted_page )
370         {
371             /* We need to reset the subtitle */
372             p_spu = Subpicture( p_dec, &fmt, true,
373                                 p_page.columns, p_page.rows,
374                                 i_align, p_block->i_pts );
375             if( !p_spu )
376                 goto error;
377             p_spu->p_region->psz_text = strdup("");
378
379             p_sys->b_update = true;
380             p_sys->i_last_page = i_wanted_page;
381             goto exit;
382         }
383         goto error;
384     }
385
386     p_sys->b_update = false;
387     p_sys->i_last_page = i_wanted_page;
388 #ifdef ZVBI_DEBUG
389     msg_Dbg( p_dec, "we now have page: %d ready for display",
390              i_wanted_page );
391 #endif
392     /* If there is a page or sub to render, then we do that here */
393     /* Create the subpicture unit */
394     p_spu = Subpicture( p_dec, &fmt, p_sys->b_text,
395                         p_page.columns, p_page.rows,
396                         i_align, p_block->i_pts );
397     if( !p_spu )
398         goto error;
399
400     if( p_sys->b_text )
401     {
402         unsigned int i_textsize = 7000;
403         int i_total;
404         char p_text[i_textsize+1];
405
406         i_total = vbi_print_page_region( &p_page, p_text, i_textsize,
407                         "UTF-8", 0, 0, 0, 0, p_page.columns, p_page.rows );
408         p_text[i_total] = '\0';
409         /* Strip off the pagenumber */
410         if( i_total <= 40 )
411             goto error;
412         p_spu->p_region->psz_text = strdup( &p_text[8] );
413
414 #ifdef ZVBI_DEBUG
415         msg_Info( p_dec, "page %x-%x(%d)\n%s", p_page.pgno, p_page.subno, i_total, p_text );
416 #endif
417     }
418     else
419     {
420         picture_t *p_pic = p_spu->p_region->p_picture;
421
422         /* ZVBI is stupid enough to assume pitch == width */
423         p_pic->p->i_pitch = 4 * fmt.i_width;
424         vbi_draw_vt_page( &p_page, ZVBI_PIXFMT_RGBA32,
425                           p_spu->p_region->p_picture->p->p_pixels, 1, 1 );
426
427         vlc_mutex_lock( &p_sys->lock );
428         memcpy( p_sys->nav_link, &p_page.nav_link, sizeof( p_sys->nav_link )) ;
429         vlc_mutex_unlock( &p_sys->lock );
430
431         OpaquePage( p_pic, p_page, fmt, b_opaque );
432     }
433
434 exit:
435     vbi_unref_page( &p_page );
436     block_Release( p_block );
437     return p_spu;
438
439 error:
440     vbi_unref_page( &p_page );
441     if( p_spu != NULL )
442     {
443         decoder_DeleteSubpicture( p_dec, p_spu );
444         p_spu = NULL;
445     }
446
447     block_Release( p_block );
448     return NULL;
449 }
450
451 static subpicture_t *Subpicture( decoder_t *p_dec, video_format_t *p_fmt,
452                                  bool b_text,
453                                  int i_columns, int i_rows, int i_align,
454                                  mtime_t i_pts )
455 {
456     video_format_t fmt;
457     subpicture_t *p_spu;
458
459     /* If there is a page or sub to render, then we do that here */
460     /* Create the subpicture unit */
461     p_spu = decoder_NewSubpicture( p_dec );
462     if( !p_spu )
463     {
464         msg_Warn( p_dec, "can't get spu buffer" );
465         return NULL;
466     }
467
468     memset( &fmt, 0, sizeof(video_format_t) );
469     fmt.i_chroma = b_text ? VLC_FOURCC('T','E','X','T') :
470                                    VLC_FOURCC('R','G','B','A');
471     fmt.i_aspect = b_text ? 0 : VOUT_ASPECT_FACTOR;
472     if( b_text )
473     {
474         fmt.i_bits_per_pixel = 0;
475     }
476     else
477     {
478         fmt.i_sar_num = fmt.i_sar_den = 1;
479         fmt.i_width = fmt.i_visible_width = i_columns * 12;
480         fmt.i_height = fmt.i_visible_height = i_rows * 10;
481         fmt.i_bits_per_pixel = 32;
482     }
483     fmt.i_x_offset = fmt.i_y_offset = 0;
484
485     p_spu->p_region = subpicture_region_New( &fmt );
486     if( p_spu->p_region == NULL )
487     {
488         msg_Err( p_dec, "cannot allocate SPU region" );
489         decoder_DeleteSubpicture( p_dec, p_spu );
490         return NULL;
491     }
492
493     p_spu->p_region->i_x = 0;
494     p_spu->p_region->i_y = 0;
495     p_spu->p_region->i_align = i_align;
496
497     p_spu->i_start = i_pts;
498     p_spu->i_stop = 0;
499     p_spu->b_ephemer = true;
500     p_spu->b_absolute = false;
501
502     if( !b_text )
503     {
504         p_spu->i_original_picture_width = fmt.i_width;
505         p_spu->i_original_picture_height = fmt.i_height;
506     }
507
508     /* */
509     *p_fmt = fmt;
510     return p_spu;
511 }
512
513 static void EventHandler( vbi_event *ev, void *user_data )
514 {
515     decoder_t *p_dec        = (decoder_t *)user_data;
516     decoder_sys_t *p_sys    = p_dec->p_sys;
517
518     if( ev->type == VBI_EVENT_TTX_PAGE )
519     {
520 #ifdef ZVBI_DEBUG
521         msg_Info( p_dec, "Page %03x.%02x ",
522                     ev->ev.ttx_page.pgno,
523                     ev->ev.ttx_page.subno & 0xFF);
524 #endif
525         if( p_sys->i_last_page == vbi_bcd2dec( ev->ev.ttx_page.pgno ) )
526             p_sys->b_update = true;
527 #ifdef ZVBI_DEBUG
528         if( ev->ev.ttx_page.clock_update )
529             msg_Dbg( p_dec, "clock" );
530         if( ev->ev.ttx_page.header_update )
531             msg_Dbg( p_dec, "header" );
532 #endif
533     }
534     else if( ev->type == VBI_EVENT_CLOSE )
535         msg_Dbg( p_dec, "Close event" );
536     else if( ev->type == VBI_EVENT_CAPTION )
537         msg_Dbg( p_dec, "Caption line: %x", ev->ev.caption.pgno );
538     else if( ev->type == VBI_EVENT_NETWORK )
539     {
540         msg_Dbg( p_dec, "Network change");
541         vbi_network n = ev->ev.network;
542         msg_Dbg( p_dec, "Network id:%d name: %s, call: %s ", n.nuid, n.name, n.call );
543     }
544     else if( ev->type == VBI_EVENT_TRIGGER )
545         msg_Dbg( p_dec, "Trigger event" );
546     else if( ev->type == VBI_EVENT_ASPECT )
547         msg_Dbg( p_dec, "Aspect update" );
548     else if( ev->type == VBI_EVENT_PROG_INFO )
549         msg_Dbg( p_dec, "Program info received" );
550     else if( ev->type == VBI_EVENT_NETWORK_ID )
551         msg_Dbg( p_dec, "Network ID changed" );
552 }
553
554 static int OpaquePage( picture_t *p_src, const vbi_page p_page,
555                        const video_format_t fmt, bool b_opaque )
556 {
557     unsigned int    x, y;
558
559     assert( fmt.i_chroma == VLC_FOURCC('R','G','B','A' ) );
560
561     /* Kludge since zvbi doesn't provide an option to specify opacity. */
562     for( y = 0; y < fmt.i_height; y++ )
563     {
564         for( x = 0; x < fmt.i_width; x++ )
565         {
566             const vbi_opacity opacity = p_page.text[ y/10 * p_page.columns + x/12 ].opacity;
567             const int background = p_page.text[ y/10 * p_page.columns + x/12 ].background;
568             uint32_t *p_pixel = (uint32_t*)&p_src->p->p_pixels[y * p_src->p->i_pitch + 4*x];
569
570             switch( opacity )
571             {
572             /* Show video instead of this character */
573             case VBI_TRANSPARENT_SPACE:
574                 *p_pixel = 0;
575                 break;
576             /* Display foreground and background color */
577             /* To make the boxed text "closed captioning" transparent
578              * change true to false.
579              */
580             case VBI_OPAQUE:
581             /* alpha blend video into background color */
582             case VBI_SEMI_TRANSPARENT:
583                 if( b_opaque )
584                     break;
585             /* Full text transparency. only foreground color is show */
586             case VBI_TRANSPARENT_FULL:
587                 if( (*p_pixel) == (0xff000000 | p_page.color_map[background] ) )
588                     *p_pixel = 0;
589                 break;
590             }
591         }
592     }
593     /* end of kludge */
594     return VLC_SUCCESS;
595 }
596
597 /* Callbacks */
598 static int RequestPage( vlc_object_t *p_this, char const *psz_cmd,
599                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
600 {
601     decoder_sys_t *p_sys = p_data;
602     VLC_UNUSED(p_this); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
603
604     vlc_mutex_lock( &p_sys->lock );
605     switch( newval.i_int )
606     {
607         case ZVBI_KEY_RED:
608             p_sys->i_wanted_page = vbi_bcd2dec( p_sys->nav_link[0].pgno );
609             p_sys->i_wanted_subpage = p_sys->nav_link[0].subno;
610             break;
611         case ZVBI_KEY_GREEN:
612             p_sys->i_wanted_page = vbi_bcd2dec( p_sys->nav_link[1].pgno );
613             p_sys->i_wanted_subpage = p_sys->nav_link[1].subno;
614             break;
615         case ZVBI_KEY_YELLOW:
616             p_sys->i_wanted_page = vbi_bcd2dec( p_sys->nav_link[2].pgno );
617             p_sys->i_wanted_subpage = p_sys->nav_link[2].subno;
618             break;
619         case ZVBI_KEY_BLUE:
620             p_sys->i_wanted_page = vbi_bcd2dec( p_sys->nav_link[3].pgno );
621             p_sys->i_wanted_subpage = p_sys->nav_link[3].subno;
622             break;
623         case ZVBI_KEY_INDEX:
624             p_sys->i_wanted_page = vbi_bcd2dec( p_sys->nav_link[5].pgno ); /* #4 is SKIPPED */
625             p_sys->i_wanted_subpage = p_sys->nav_link[5].subno;
626             break;
627     }
628     if( newval.i_int > 0 && newval.i_int < 999 )
629     {
630         p_sys->i_wanted_page = newval.i_int;
631         p_sys->i_wanted_subpage = VBI_ANY_SUBNO;
632     }
633     vlc_mutex_unlock( &p_sys->lock );
634
635     return VLC_SUCCESS;
636 }
637
638 static int Opaque( vlc_object_t *p_this, char const *psz_cmd,
639                    vlc_value_t oldval, vlc_value_t newval, void *p_data )
640 {
641     decoder_sys_t *p_sys = p_data;
642     VLC_UNUSED(p_this); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
643
644     vlc_mutex_lock( &p_sys->lock );
645     p_sys->b_opaque = newval.b_bool;
646     p_sys->b_update = true;
647     vlc_mutex_unlock( &p_sys->lock );
648
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     VLC_UNUSED(p_this); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
657
658     vlc_mutex_lock( &p_sys->lock );
659     p_sys->i_align = newval.i_int;
660     vlc_mutex_unlock( &p_sys->lock );
661
662     return VLC_SUCCESS;
663 }
664
665 static int EventKey( vlc_object_t *p_this, char const *psz_cmd,
666                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
667 {
668     decoder_t *p_dec = p_data;
669     decoder_sys_t *p_sys = p_dec->p_sys;
670
671     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
672
673     /* FIXME: Capture + and - key for subpage browsing */
674     if( newval.i_int == '-' || newval.i_int == '+' )
675     {
676         vlc_mutex_lock( &p_sys->lock );
677         if( p_sys->i_wanted_subpage == VBI_ANY_SUBNO && newval.i_int == '+' )
678             p_sys->i_wanted_subpage = vbi_dec2bcd(1);
679         else if ( newval.i_int == '+' )
680             p_sys->i_wanted_subpage = vbi_add_bcd( p_sys->i_wanted_subpage, 1);
681         else if( newval.i_int == '-')
682             p_sys->i_wanted_subpage = vbi_add_bcd( p_sys->i_wanted_subpage, 0xF9999999); /* BCD complement - 1 */
683
684         if ( !vbi_bcd_digits_greater( p_sys->i_wanted_subpage, 0x00 ) || vbi_bcd_digits_greater( p_sys->i_wanted_subpage, 0x99 ) )
685                 p_sys->i_wanted_subpage = VBI_ANY_SUBNO;
686         else
687             vout_OSDMessage( p_this, DEFAULT_CHAN, "%s: %d", _("Subpage"), vbi_bcd2dec( p_sys->i_wanted_subpage) );
688
689         p_sys->b_update = true;
690         vlc_mutex_unlock( &p_sys->lock );
691     }
692
693     /* Capture 0-9 for page selection */
694     if( newval.i_int < '0' || newval.i_int > '9' )
695         return VLC_SUCCESS;
696
697     vlc_mutex_lock( &p_sys->lock );
698     p_sys->i_key[0] = p_sys->i_key[1];
699     p_sys->i_key[1] = p_sys->i_key[2];
700     p_sys->i_key[2] = (int)(newval.i_int - '0');
701     vout_OSDMessage( p_this, DEFAULT_CHAN, "%s: %c%c%c", _("Page"), (char)(p_sys->i_key[0]+'0'), (char)(p_sys->i_key[1]+'0'), (char)(p_sys->i_key[2]+'0') );
702
703     int i_new_page = 0;
704
705     if( p_sys->i_key[0] > 0 && p_sys->i_key[0] <= 8 &&
706         p_sys->i_key[1] >= 0 && p_sys->i_key[1] <= 9 &&
707         p_sys->i_key[2] >= 0 && p_sys->i_key[2] <= 9 )
708     {
709         i_new_page = p_sys->i_key[0]*100 + p_sys->i_key[1]*10 + p_sys->i_key[2];
710         p_sys->i_key[0] = p_sys->i_key[1] = p_sys->i_key[2] = '*' - '0';
711     }
712     vlc_mutex_unlock( &p_sys->lock );
713
714     if( i_new_page > 0 )
715         var_SetInteger( p_dec, "vbi-page", i_new_page );
716
717     return VLC_SUCCESS;
718 }