]> git.sesse.net Git - vlc/blob - modules/access/dvdnav.c
* modules/access/dvdnav.c: backport of 11362.
[vlc] / modules / access / dvdnav.c
1 /*****************************************************************************
2  * dvdnav.c: DVD module using the dvdnav library.
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31
32 #ifdef HAVE_UNISTD_H
33 #   include <unistd.h>
34 #endif
35 #ifdef HAVE_SYS_TYPES_H
36 #   include <sys/types.h>
37 #endif
38 #ifdef HAVE_SYS_STAT_H
39 #   include <sys/stat.h>
40 #endif
41 #ifdef HAVE_FCNTL_H
42 #   include <fcntl.h>
43 #endif
44
45 #include "vlc_keys.h"
46 #include "iso_lang.h"
47
48 /* FIXME we should find a better way than including that */
49 #include "../../src/misc/iso-639_def.h"
50
51
52 #include <dvdnav/dvdnav.h>
53
54 #include "../demux/ps.h"
55
56 /*****************************************************************************
57  * Module descriptor
58  *****************************************************************************/
59 #define ANGLE_TEXT N_("DVD angle")
60 #define ANGLE_LONGTEXT N_( \
61     "Allows you to select the default DVD angle." )
62
63 #define CACHING_TEXT N_("Caching value in ms")
64 #define CACHING_LONGTEXT N_( \
65     "Allows you to modify the default caching value for DVDnav streams. This "\
66     "value should be set in millisecond units." )
67 #define MENU_TEXT N_("Start directly in menu")
68 #define MENU_LONGTEXT N_( \
69     "Allows you to start the DVD directly in the main menu. This "\
70     "will try to skip all the useless warnings introductions." )
71
72 #define LANGUAGE_DEFAULT ("en")
73
74 static int  Open ( vlc_object_t * );
75 static void Close( vlc_object_t * );
76
77 vlc_module_begin();
78     set_shortname( _("DVD with menus") );
79     set_description( _("DVDnav Input") );
80     set_category( CAT_INPUT );
81     set_subcategory( SUBCAT_INPUT_ACCESS );
82     add_integer( "dvdnav-angle", 1, NULL, ANGLE_TEXT,
83         ANGLE_LONGTEXT, VLC_FALSE );
84     add_integer( "dvdnav-caching", DEFAULT_PTS_DELAY / 1000, NULL,
85         CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
86     add_bool( "dvdnav-menu", VLC_TRUE, NULL,
87         MENU_TEXT, MENU_LONGTEXT, VLC_FALSE );
88     set_capability( "access_demux", 5 );
89     add_shortcut( "dvd" );
90     add_shortcut( "dvdnav" );
91     set_callbacks( Open, Close );
92 vlc_module_end();
93
94 /* Shall we use libdvdnav's read ahead cache? */
95 #define DVD_READ_CACHE 1
96
97 /*****************************************************************************
98  * Local prototypes
99  *****************************************************************************/
100 typedef struct
101 {
102     VLC_COMMON_MEMBERS
103
104     demux_t        *p_demux;
105     vlc_mutex_t     lock;
106
107     vlc_bool_t      b_moved;
108     vlc_bool_t      b_clicked;
109     vlc_bool_t      b_key;
110
111     vlc_bool_t      b_still;
112     int64_t         i_still_end;
113
114 } event_thread_t;
115
116 static int EventThread( vlc_object_t * );
117
118 struct demux_sys_t
119 {
120     dvdnav_t    *dvdnav;
121
122     /* track */
123     ps_track_t  tk[PS_TK_COUNT];
124     int         i_mux_rate;
125
126     /* for spu variables */
127     input_thread_t *p_input;
128
129     /* event */
130     event_thread_t *p_ev;
131
132     /* palette for menus */
133     uint32_t clut[16];
134     uint8_t  palette[4][4];
135     vlc_bool_t b_spu_change;
136
137     /* */
138     int i_aspect;
139
140     int           i_title;
141     input_title_t **title;
142
143     /* lenght of program group chain */
144     mtime_t     i_pgc_length;
145 };
146
147 static int Control( demux_t *, int, va_list );
148 static int Demux( demux_t * );
149 static int DemuxBlock( demux_t *, uint8_t *, int );
150
151 static void DemuxTitles( demux_t * );
152 static void ESSubtitleUpdate( demux_t * );
153 static void ButtonUpdate( demux_t *, vlc_bool_t );
154
155 static void ESNew( demux_t *, int );
156 static int ProbeDVD( demux_t *, char * );
157
158 static char *DemuxGetLanguageCode( demux_t *p_demux, char *psz_var );
159
160 /*****************************************************************************
161  * DemuxOpen:
162  *****************************************************************************/
163 static int Open( vlc_object_t *p_this )
164 {
165     demux_t     *p_demux = (demux_t*)p_this;
166     demux_sys_t *p_sys;
167     dvdnav_t    *p_dvdnav;
168     int         i_angle;
169     char        *psz_name;
170     char        *psz_code;
171     vlc_value_t val;
172
173     if( !p_demux->psz_path || !*p_demux->psz_path )
174     {
175         /* Only when selected */
176         if( !p_this->b_force ) return VLC_EGENERIC;
177
178         psz_name = var_CreateGetString( p_this, "dvd" );
179         if( !psz_name || !*psz_name )
180         {
181             if( psz_name ) free( psz_name );
182             return VLC_EGENERIC;
183         }
184     }
185     else psz_name = strdup( p_demux->psz_path );
186
187 #ifdef WIN32
188     if( psz_name[0] && psz_name[1] == ':' &&
189         psz_name[2] == '\\' && psz_name[3] == '\0' ) psz_name[2] = '\0';
190 #endif
191
192     /* Try some simple probing to avoid going through dvdnav_open too often */
193     if( ProbeDVD( p_demux, psz_name ) != VLC_SUCCESS )
194     {
195         free( psz_name );
196         return VLC_EGENERIC;
197     }
198
199     /* Open dvdnav */
200     if( dvdnav_open( &p_dvdnav, psz_name ) != DVDNAV_STATUS_OK )
201     {
202         msg_Warn( p_demux, "cannot open dvdnav" );
203         free( psz_name );
204         return VLC_EGENERIC;
205     }
206     free( psz_name );
207
208     /* Fill p_demux field */
209     p_demux->pf_demux = Demux;
210     p_demux->pf_control = Control;
211     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
212     memset( p_sys, 0, sizeof( demux_sys_t ) );
213     p_sys->dvdnav = p_dvdnav;
214
215     ps_track_init( p_sys->tk );
216     p_sys->i_aspect = -1;
217     p_sys->i_mux_rate = 0;
218     p_sys->i_pgc_length = 0;
219     p_sys->b_spu_change = 0;
220
221     if( 1 )
222     {
223         // Hack for libdvdnav CVS.
224         // Without it dvdnav_get_number_of_titles() fails.
225         // Remove when fixed in libdvdnav CVS.
226         uint8_t buffer[DVD_VIDEO_LB_LEN];
227         int i_event, i_len;
228
229         if( dvdnav_get_next_block( p_sys->dvdnav, buffer, &i_event, &i_len )
230               == DVDNAV_STATUS_ERR )
231         {
232             msg_Warn( p_demux, "dvdnav_get_next_block failed" );
233         }
234
235         dvdnav_sector_search( p_sys->dvdnav, 0, SEEK_SET );
236     }
237
238     /* Configure dvdnav */
239     if( dvdnav_set_readahead_flag( p_sys->dvdnav, DVD_READ_CACHE ) !=
240           DVDNAV_STATUS_OK )
241     {
242         msg_Warn( p_demux, "cannot set read-a-head flag" );
243     }
244
245     if( dvdnav_set_PGC_positioning_flag( p_sys->dvdnav, 1 ) !=
246           DVDNAV_STATUS_OK )
247     {
248         msg_Warn( p_demux, "cannot set PGC positioning flag" );
249     }
250
251     /* Set menu language ("en")
252      * XXX: maybe it would be better to set it like audio/spu
253      * or to create a --menu-language option */
254     if( dvdnav_menu_language_select( p_sys->dvdnav,LANGUAGE_DEFAULT ) !=
255         DVDNAV_STATUS_OK )
256     {
257         msg_Warn( p_demux, "can't set menu language to '%s' (%s)",
258                   LANGUAGE_DEFAULT, dvdnav_err_to_string( p_sys->dvdnav ) );
259     }
260
261     /* Set audio language */
262     psz_code = DemuxGetLanguageCode( p_demux, "audio-language" );
263     if( dvdnav_audio_language_select( p_sys->dvdnav, psz_code ) !=
264         DVDNAV_STATUS_OK )
265     {
266         msg_Warn( p_demux, "can't set audio language to '%s' (%s)",
267                   psz_code, dvdnav_err_to_string( p_sys->dvdnav ) );
268         /* We try to fall back to 'en' */
269         if( strcmp( psz_code, LANGUAGE_DEFAULT ) )
270             dvdnav_audio_language_select( p_sys->dvdnav, LANGUAGE_DEFAULT );
271     }
272     free( psz_code );
273
274     /* Set spu language */
275     psz_code = DemuxGetLanguageCode( p_demux, "sub-language" );
276     if( dvdnav_spu_language_select( p_sys->dvdnav, psz_code ) !=
277         DVDNAV_STATUS_OK )
278     {
279         msg_Warn( p_demux, "can't set spu language to '%s' (%s)",
280                   psz_code, dvdnav_err_to_string( p_sys->dvdnav ) );
281         /* We try to fall back to 'en' */
282         if( strcmp( psz_code, LANGUAGE_DEFAULT ) )
283             dvdnav_spu_language_select(p_sys->dvdnav, LANGUAGE_DEFAULT );
284     }
285     free( psz_code );
286
287     DemuxTitles( p_demux );
288
289     var_Create( p_demux, "dvdnav-menu", VLC_VAR_BOOL|VLC_VAR_DOINHERIT );
290     var_Get( p_demux, "dvdnav-menu", &val );
291     if( val.b_bool )
292     {
293         msg_Dbg( p_demux, "trying to go to dvd menu" );
294
295         if( dvdnav_title_play( p_sys->dvdnav, 1 ) != DVDNAV_STATUS_OK )
296         {
297             msg_Err( p_demux, "cannot set title (can't decrypt DVD?)" );
298             dvdnav_close( p_sys->dvdnav );
299             free( p_sys );
300             return VLC_EGENERIC;
301         }
302
303         if( dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Title ) !=
304             DVDNAV_STATUS_OK )
305         {
306             /* Try going to menu root */
307             if( dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Root ) !=
308                 DVDNAV_STATUS_OK )
309                     msg_Warn( p_demux, "cannot go to dvd menu" );
310         }
311     }
312
313     var_Create( p_demux, "dvdnav-angle", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
314     var_Get( p_demux, "dvdnav-angle", &val );
315     i_angle = val.i_int > 0 ? val.i_int : 1;
316
317     /* Update default_pts to a suitable value for dvdnav access */
318     var_Create( p_demux, "dvdnav-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
319
320     /* FIXME hack hack hack hack FIXME */
321     /* Get p_input and create variable */
322     p_sys->p_input = vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
323     var_Create( p_sys->p_input, "x-start", VLC_VAR_INTEGER );
324     var_Create( p_sys->p_input, "y-start", VLC_VAR_INTEGER );
325     var_Create( p_sys->p_input, "x-end", VLC_VAR_INTEGER );
326     var_Create( p_sys->p_input, "y-end", VLC_VAR_INTEGER );
327     var_Create( p_sys->p_input, "color", VLC_VAR_ADDRESS );
328     var_Create( p_sys->p_input, "menu-palette", VLC_VAR_ADDRESS );
329     var_Create( p_sys->p_input, "highlight", VLC_VAR_BOOL );
330     var_Create( p_sys->p_input, "highlight-mutex", VLC_VAR_MUTEX );
331
332     /* Now create our event thread catcher */
333     p_sys->p_ev = vlc_object_create( p_demux, sizeof( event_thread_t ) );
334     p_sys->p_ev->p_demux = p_demux;
335     vlc_thread_create( p_sys->p_ev, "dvdnav event thread handler", EventThread,
336                        VLC_THREAD_PRIORITY_LOW, VLC_FALSE );
337
338     return VLC_SUCCESS;
339 }
340
341 /*****************************************************************************
342  * Close:
343  *****************************************************************************/
344 static void Close( vlc_object_t *p_this )
345 {
346     demux_t     *p_demux = (demux_t*)p_this;
347     demux_sys_t *p_sys = p_demux->p_sys;
348     int i;
349
350     /* stop the event handler */
351     p_sys->p_ev->b_die = VLC_TRUE;
352     vlc_thread_join( p_sys->p_ev );
353     vlc_object_destroy( p_sys->p_ev );
354
355     var_Destroy( p_sys->p_input, "highlight-mutex" );
356     var_Destroy( p_sys->p_input, "highlight" );
357     var_Destroy( p_sys->p_input, "x-start" );
358     var_Destroy( p_sys->p_input, "x-end" );
359     var_Destroy( p_sys->p_input, "y-start" );
360     var_Destroy( p_sys->p_input, "y-end" );
361     var_Destroy( p_sys->p_input, "color" );
362     var_Destroy( p_sys->p_input, "menu-palette" );
363
364     vlc_object_release( p_sys->p_input );
365
366     for( i = 0; i < PS_TK_COUNT; i++ )
367     {
368         ps_track_t *tk = &p_sys->tk[i];
369         if( tk->b_seen )
370         {
371             es_format_Clean( &tk->fmt );
372             if( tk->es ) es_out_Del( p_demux->out, tk->es );
373         }
374     }
375
376     dvdnav_close( p_sys->dvdnav );
377     free( p_sys );
378 }
379
380 /*****************************************************************************
381  * Control:
382  *****************************************************************************/
383 static int Control( demux_t *p_demux, int i_query, va_list args )
384 {
385     demux_sys_t *p_sys = p_demux->p_sys;
386     double f, *pf;
387     vlc_bool_t *pb;
388     int64_t *pi64;
389     input_title_t ***ppp_title;
390     int          *pi_int;
391     int i;
392
393     switch( i_query )
394     {
395         case DEMUX_SET_POSITION:
396         case DEMUX_GET_POSITION:
397         case DEMUX_GET_TIME:
398         case DEMUX_GET_LENGTH:
399         {
400             uint32_t pos, len;
401             if( dvdnav_get_position( p_sys->dvdnav, &pos, &len ) !=
402                   DVDNAV_STATUS_OK || len == 0 )
403             {
404                 return VLC_EGENERIC;
405             }
406
407             if( i_query == DEMUX_GET_POSITION )
408             {
409                 pf = (double*)va_arg( args, double* );
410                 *pf = (double)pos / (double)len;
411                 return VLC_SUCCESS;
412             }
413             else if( i_query == DEMUX_SET_POSITION )
414             {
415                 f = (double)va_arg( args, double );
416                 pos = f * len;
417                 if( dvdnav_sector_search( p_sys->dvdnav, pos, SEEK_SET ) ==
418                       DVDNAV_STATUS_OK )
419                 {
420                     return VLC_SUCCESS;
421                 }
422             }
423             else if( i_query == DEMUX_GET_TIME )
424             {
425                 pi64 = (int64_t*)va_arg( args, int64_t * );
426                 if( p_sys->i_pgc_length > 0 )
427                 {
428                     *pi64 = p_sys->i_pgc_length * pos / len;
429                     return VLC_SUCCESS;
430                 }
431             }
432             else if( i_query == DEMUX_GET_LENGTH )
433             {
434                 pi64 = (int64_t*)va_arg( args, int64_t * );
435                 if( p_sys->i_pgc_length > 0 )
436                 {
437                     *pi64 = (int64_t)p_sys->i_pgc_length;
438                     return VLC_SUCCESS;
439                 }
440             }
441
442             return VLC_EGENERIC;
443         }
444
445         /* Special for access_demux */
446         case DEMUX_CAN_PAUSE:
447         case DEMUX_CAN_CONTROL_PACE:
448             /* TODO */
449             pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
450             *pb = VLC_TRUE;
451             return VLC_SUCCESS;
452
453         case DEMUX_SET_PAUSE_STATE:
454             return VLC_SUCCESS;
455
456         case DEMUX_GET_TITLE_INFO:
457             ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
458             pi_int    = (int*)va_arg( args, int* );
459             *((int*)va_arg( args, int* )) = 0; /* Title offset */
460             *((int*)va_arg( args, int* )) = 1; /* Chapter offset */
461
462             /* Duplicate title infos */
463             *pi_int = p_sys->i_title;
464             *ppp_title = malloc( sizeof( input_title_t ** ) * p_sys->i_title );
465             for( i = 0; i < p_sys->i_title; i++ )
466             {
467                 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->title[i] );
468             }
469             return VLC_SUCCESS;
470
471         case DEMUX_SET_TITLE:
472             i = (int)va_arg( args, int );
473             if( ( i == 0 && dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Root )
474                   != DVDNAV_STATUS_OK ) ||
475                 ( i != 0 && dvdnav_title_play( p_sys->dvdnav, i )
476                   != DVDNAV_STATUS_OK ) )
477             {
478                 msg_Warn( p_demux, "cannot set title/chapter" );
479                 return VLC_EGENERIC;
480             }
481             p_demux->info.i_update |=
482                 INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
483             p_demux->info.i_title = i;
484             p_demux->info.i_seekpoint = 0;
485             return VLC_SUCCESS;
486
487         case DEMUX_SET_SEEKPOINT:
488             i = (int)va_arg( args, int );
489             if( p_demux->info.i_title == 0 )
490             {
491                 int i_ret;
492                 /* Special case */
493                 switch( i )
494                 {
495                 case 0:
496                     i_ret = dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Escape );
497                     break;
498                 case 1:
499                     i_ret = dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Root );
500                     break;
501                 case 2:
502                     i_ret = dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Title );
503                     break;
504                 case 3:
505                     i_ret = dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Part );
506                     break;
507                 case 4:
508                     i_ret = dvdnav_menu_call( p_sys->dvdnav,
509                                               DVD_MENU_Subpicture );
510                     break;
511                 case 5:
512                     i_ret = dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Audio );
513                     break;
514                 case 6:
515                     i_ret = dvdnav_menu_call( p_sys->dvdnav, DVD_MENU_Angle );
516                     break;
517                 default:
518                     return VLC_EGENERIC;
519                 }
520
521                 if( i_ret != DVDNAV_STATUS_OK )
522                     return VLC_EGENERIC;
523             }
524             else if( dvdnav_part_play( p_sys->dvdnav, p_demux->info.i_title,
525                                        i + 1 ) != DVDNAV_STATUS_OK )
526             {
527                 msg_Warn( p_demux, "cannot set title/chapter" );
528                 return VLC_EGENERIC;
529             }
530             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
531             p_demux->info.i_seekpoint = i;
532             return VLC_SUCCESS;
533
534         case DEMUX_GET_PTS_DELAY:
535             pi64 = (int64_t*)va_arg( args, int64_t * );
536             *pi64 = (int64_t)var_GetInteger( p_demux, "dvdnav-caching" ) *1000;
537             return VLC_SUCCESS;
538
539         /* TODO implement others */
540         default:
541             return VLC_EGENERIC;
542     }
543 }
544
545 /*****************************************************************************
546  * Demux:
547  *****************************************************************************/
548 static int Demux( demux_t *p_demux )
549 {
550     demux_sys_t *p_sys = p_demux->p_sys;
551
552     uint8_t buffer[DVD_VIDEO_LB_LEN];
553     uint8_t *packet = buffer;
554     int i_event;
555     int i_len;
556
557 #if DVD_READ_CACHE
558     if( dvdnav_get_next_cache_block( p_sys->dvdnav, &packet, &i_event, &i_len )
559         == DVDNAV_STATUS_ERR )
560 #else
561     if( dvdnav_get_next_block( p_sys->dvdnav, packet, &i_event, &i_len )
562         == DVDNAV_STATUS_ERR )
563 #endif
564     {
565         msg_Warn( p_demux, "cannot get next block (%s)",
566                   dvdnav_err_to_string( p_sys->dvdnav ) );
567         return -1;
568     }
569
570     switch( i_event )
571     {
572     case DVDNAV_BLOCK_OK:   /* mpeg block */
573         DemuxBlock( p_demux, packet, i_len );
574         break;
575
576     case DVDNAV_NOP:    /* Nothing */
577         msg_Dbg( p_demux, "DVDNAV_NOP" );
578         break;
579
580     case DVDNAV_STILL_FRAME:
581     {
582         dvdnav_still_event_t *event = (dvdnav_still_event_t*)packet;
583         vlc_mutex_lock( &p_sys->p_ev->lock );
584         if( !p_sys->p_ev->b_still )
585         {
586             msg_Dbg( p_demux, "DVDNAV_STILL_FRAME" );
587             msg_Dbg( p_demux, "     - length=0x%x", event->length );
588             p_sys->p_ev->b_still = VLC_TRUE;
589             if( event->length == 0xff )
590             {
591                 p_sys->p_ev->i_still_end = 0;
592             }
593             else
594             {
595                 p_sys->p_ev->i_still_end = (int64_t)event->length *
596                     1000000 + mdate() + p_sys->p_input->i_pts_delay;
597             }
598         }
599         vlc_mutex_unlock( &p_sys->p_ev->lock );
600         msleep( 40000 );
601         break;
602     }
603
604     case DVDNAV_SPU_CLUT_CHANGE:
605     {
606         int i;
607
608         msg_Dbg( p_demux, "DVDNAV_SPU_CLUT_CHANGE" );
609         /* Update color lookup table (16 *uint32_t in packet) */
610         memcpy( p_sys->clut, packet, 16 * sizeof( uint32_t ) );
611
612         /* HACK to get the SPU tracks registered in the right order */
613         for( i = 0; i < 0x1f; i++ )
614         {
615             if( dvdnav_spu_stream_to_lang( p_sys->dvdnav, i ) != 0xffff )
616                 ESNew( p_demux, 0xbd20 + i );
617         }
618         /* END HACK */
619         break;
620     }
621
622     case DVDNAV_SPU_STREAM_CHANGE:
623     {
624         dvdnav_spu_stream_change_event_t *event =
625             (dvdnav_spu_stream_change_event_t*)packet;
626         int i;
627
628         msg_Dbg( p_demux, "DVDNAV_SPU_STREAM_CHANGE" );
629         msg_Dbg( p_demux, "     - physical_wide=%d",
630                  event->physical_wide );
631         msg_Dbg( p_demux, "     - physical_letterbox=%d",
632                  event->physical_letterbox);
633         msg_Dbg( p_demux, "     - physical_pan_scan=%d",
634                  event->physical_pan_scan );
635
636         ESSubtitleUpdate( p_demux );
637         p_sys->b_spu_change = 1;
638
639         /* HACK to get the SPU tracks registered in the right order */
640         for( i = 0; i < 0x1f; i++ )
641         {
642             if( dvdnav_spu_stream_to_lang( p_sys->dvdnav, i ) != 0xffff )
643                 ESNew( p_demux, 0xbd20 + i );
644         }
645         /* END HACK */
646         break;
647     }
648
649     case DVDNAV_AUDIO_STREAM_CHANGE:
650     {
651         dvdnav_audio_stream_change_event_t *event =
652             (dvdnav_audio_stream_change_event_t*)packet;
653         msg_Dbg( p_demux, "DVDNAV_AUDIO_STREAM_CHANGE" );
654         msg_Dbg( p_demux, "     - physical=%d", event->physical );
655         /* TODO */
656         break;
657     }
658
659     case DVDNAV_VTS_CHANGE:
660     {
661         int32_t i_title = 0;
662         int32_t i_part  = 0;
663         int i;
664
665         dvdnav_vts_change_event_t *event = (dvdnav_vts_change_event_t*)packet;
666         msg_Dbg( p_demux, "DVDNAV_VTS_CHANGE" );
667         msg_Dbg( p_demux, "     - vtsN=%d", event->new_vtsN );
668         msg_Dbg( p_demux, "     - domain=%d", event->new_domain );
669
670         /* dvdnav_get_video_aspect / dvdnav_get_video_scale_permission */
671         /* TODO check if we always have VTS and CELL */
672         p_sys->i_aspect = dvdnav_get_video_aspect( p_sys->dvdnav );
673
674         /* reset PCR */
675         es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
676
677         for( i = 0; i < PS_TK_COUNT; i++ )
678         {
679             ps_track_t *tk = &p_sys->tk[i];
680             if( tk->b_seen )
681             {
682                 es_format_Clean( &tk->fmt );
683                 if( tk->es ) es_out_Del( p_demux->out, tk->es );
684             }
685             tk->b_seen = VLC_FALSE;
686         }
687
688         if( dvdnav_current_title_info( p_sys->dvdnav, &i_title,
689                                        &i_part ) == DVDNAV_STATUS_OK )
690         {
691             if( i_title >= 0 && i_title < p_sys->i_title &&
692                 p_demux->info.i_title != i_title )
693             {
694                 p_demux->info.i_update |= INPUT_UPDATE_TITLE;
695                 p_demux->info.i_title = i_title;
696             }
697         }
698         break;
699     }
700
701     case DVDNAV_CELL_CHANGE:
702     {
703         int32_t i_title = 0;
704         int32_t i_part  = 0;
705
706         dvdnav_cell_change_event_t *event =
707             (dvdnav_cell_change_event_t*)packet;
708         msg_Dbg( p_demux, "DVDNAV_CELL_CHANGE" );
709         msg_Dbg( p_demux, "     - cellN=%d", event->cellN );
710         msg_Dbg( p_demux, "     - pgN=%d", event->pgN );
711         msg_Dbg( p_demux, "     - cell_length=%lld", event->cell_length );
712         msg_Dbg( p_demux, "     - pg_length=%lld", event->pg_length );
713         msg_Dbg( p_demux, "     - pgc_length=%lld", event->pgc_length );
714         msg_Dbg( p_demux, "     - cell_start=%lld", event->cell_start );
715         msg_Dbg( p_demux, "     - pg_start=%lld", event->pg_start );
716
717         /* Store the lenght in time of the current PGC */
718         p_sys->i_pgc_length = event->pgc_length / 90 * 1000;
719
720         /* FIXME is it correct or there is better way to know chapter change */
721         if( dvdnav_current_title_info( p_sys->dvdnav, &i_title,
722                                        &i_part ) == DVDNAV_STATUS_OK )
723         {
724             if( i_title >= 0 && i_title < p_sys->i_title &&
725                 i_part >= 1 && i_part <= p_sys->title[i_title]->i_seekpoint &&
726                 p_demux->info.i_seekpoint != i_part - 1 )
727             {
728                 p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
729                 p_demux->info.i_seekpoint = i_part - 1;
730             }
731         }
732         break;
733     }
734
735     case DVDNAV_NAV_PACKET:
736     {
737 #ifdef DVDNAV_DEBUG
738         msg_Dbg( p_demux, "DVDNAV_NAV_PACKET" );
739 #endif
740         /* A lot of thing to do here :
741          *  - handle packet
742          *  - fetch pts (for time display)
743          *  - ...
744          */
745         DemuxBlock( p_demux, packet, i_len );
746         if( p_sys->b_spu_change ) ButtonUpdate( p_demux, 0 );
747         p_sys->b_spu_change = 0;
748         break;
749     }
750
751     case DVDNAV_STOP:   /* EOF */
752         msg_Dbg( p_demux, "DVDNAV_STOP" );
753
754 #if DVD_READ_CACHE
755         dvdnav_free_cache_block( p_sys->dvdnav, packet );
756 #endif
757         return 0;
758
759     case DVDNAV_HIGHLIGHT:
760     {
761         dvdnav_highlight_event_t *event = (dvdnav_highlight_event_t*)packet;
762         msg_Dbg( p_demux, "DVDNAV_HIGHLIGHT" );
763         msg_Dbg( p_demux, "     - display=%d", event->display );
764         msg_Dbg( p_demux, "     - buttonN=%d", event->buttonN );
765         ButtonUpdate( p_demux, 0 );
766         break;
767     }
768
769     case DVDNAV_HOP_CHANNEL:
770         msg_Dbg( p_demux, "DVDNAV_HOP_CHANNEL" );
771         /* We should try to flush all our internal buffer */
772         break;
773
774     case DVDNAV_WAIT:
775         msg_Dbg( p_demux, "DVDNAV_WAIT" );
776
777         /* reset PCR */
778         es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
779         dvdnav_wait_skip( p_sys->dvdnav );
780         break;
781
782     default:
783         msg_Warn( p_demux, "Unknown event (0x%x)", i_event );
784         break;
785     }
786
787 #if DVD_READ_CACHE
788     dvdnav_free_cache_block( p_sys->dvdnav, packet );
789 #endif
790
791     return 1;
792 }
793
794 /* Get a 2 char code
795  * FIXME: partiallyy duplicated from src/input/es_out.c
796  */
797 static char *DemuxGetLanguageCode( demux_t *p_demux, char *psz_var )
798 {
799     const iso639_lang_t *pl;
800     char *psz_lang;
801     char *p;
802
803     psz_lang = var_CreateGetString( p_demux, psz_var );
804     /* XXX: we will use only the first value
805      * (and ignore other ones in case of a list) */
806     if( ( p = strchr( psz_lang, ',' ) ) ) *p = '\0';
807
808     for( pl = p_languages; pl->psz_iso639_1 != NULL; pl++ )
809     {
810         if( !strcasecmp( pl->psz_eng_name, psz_lang ) ||
811             !strcasecmp( pl->psz_native_name, psz_lang ) ||
812             !strcasecmp( pl->psz_iso639_1, psz_lang ) ||
813             !strcasecmp( pl->psz_iso639_2T, psz_lang ) ||
814             !strcasecmp( pl->psz_iso639_2B, psz_lang ) )
815             break;
816     }
817
818     free( psz_lang );
819
820     if( pl->psz_iso639_1 != NULL )
821         return strdup( pl->psz_iso639_1 );
822
823     return strdup(LANGUAGE_DEFAULT);
824 }
825
826 static void DemuxTitles( demux_t *p_demux )
827 {
828     demux_sys_t *p_sys = p_demux->p_sys;
829     input_title_t *t;
830     seekpoint_t *s;
831     int32_t i_titles;
832     int i;
833
834     /* Menu */
835     t = vlc_input_title_New();
836     t->b_menu = VLC_TRUE;
837     t->psz_name = strdup( "DVD Menu" );
838
839     s = vlc_seekpoint_New();
840     s->psz_name = strdup( "Resume" );
841     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
842
843     s = vlc_seekpoint_New();
844     s->psz_name = strdup( "Root" );
845     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
846
847     s = vlc_seekpoint_New();
848     s->psz_name = strdup( "Title" );
849     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
850
851     s = vlc_seekpoint_New();
852     s->psz_name = strdup( "Chapter" );
853     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
854
855     s = vlc_seekpoint_New();
856     s->psz_name = strdup( "Subtitle" );
857     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
858
859     s = vlc_seekpoint_New();
860     s->psz_name = strdup( "Audio" );
861     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
862
863     s = vlc_seekpoint_New();
864     s->psz_name = strdup( "Angle" );
865     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
866
867     TAB_APPEND( p_sys->i_title, p_sys->title, t );
868
869     /* Find out number of titles/chapters */
870     dvdnav_get_number_of_titles( p_sys->dvdnav, &i_titles );
871     for( i = 1; i <= i_titles; i++ )
872     {
873         int32_t i_chapters = 0;
874         int j;
875
876         dvdnav_get_number_of_parts( p_sys->dvdnav, i, &i_chapters );
877
878         t = vlc_input_title_New();
879         for( j = 0; j < __MAX( i_chapters, 1 ); j++ )
880         {
881             s = vlc_seekpoint_New();
882             TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
883         }
884
885         TAB_APPEND( p_sys->i_title, p_sys->title, t );
886     }
887 }
888
889 /*****************************************************************************
890  * Update functions:
891  *****************************************************************************/
892 static void ButtonUpdate( demux_t *p_demux, vlc_bool_t b_mode )
893 {
894     demux_sys_t *p_sys = p_demux->p_sys;
895     vlc_value_t val;
896     int32_t i_title, i_part;
897
898     dvdnav_current_title_info( p_sys->dvdnav, &i_title, &i_part );
899
900     if( var_Get( p_sys->p_input, "highlight-mutex", &val ) == VLC_SUCCESS )
901     {
902         vlc_mutex_t *p_mutex = val.p_address;
903         dvdnav_highlight_area_t hl;
904         int32_t i_button;
905
906         if( dvdnav_get_current_highlight( p_sys->dvdnav, &i_button )
907             != DVDNAV_STATUS_OK )
908         {
909             msg_Err( p_demux, "dvdnav_get_current_highlight failed" );
910             return;
911         }
912
913         if( i_button > 0 && i_title ==  0 )
914         {
915             int i;
916             pci_t *pci = dvdnav_get_current_nav_pci( p_sys->dvdnav );
917
918             dvdnav_get_highlight_area( pci, i_button, b_mode, &hl );
919
920             for( i = 0; i < 4; i++ )
921             {
922                 uint32_t i_yuv = p_sys->clut[(hl.palette>>(16+i*4))&0x0f];
923                 uint8_t i_alpha = (hl.palette>>(i*4))&0x0f;
924                 i_alpha = i_alpha == 0xf ? 0xff : i_alpha << 4;
925
926                 p_sys->palette[i][0] = (i_yuv >> 16) & 0xff;
927                 p_sys->palette[i][1] = (i_yuv >> 0) & 0xff;
928                 p_sys->palette[i][2] = (i_yuv >> 8) & 0xff;
929                 p_sys->palette[i][3] = i_alpha;
930             }
931
932             vlc_mutex_lock( p_mutex );
933             val.i_int = hl.sx; var_Set( p_sys->p_input, "x-start", val );
934             val.i_int = hl.ex; var_Set( p_sys->p_input, "x-end", val );
935             val.i_int = hl.sy; var_Set( p_sys->p_input, "y-start", val );
936             val.i_int = hl.ey; var_Set( p_sys->p_input, "y-end", val );
937
938             val.p_address = (void *)p_sys->palette;
939             var_Set( p_sys->p_input, "menu-palette", val );
940
941             val.b_bool = VLC_TRUE; var_Set( p_sys->p_input, "highlight", val );
942             vlc_mutex_unlock( p_mutex );
943
944             msg_Dbg( p_demux, "buttonUpdate %d", i_button );
945         }
946         else
947         {
948             msg_Dbg( p_demux, "buttonUpdate not done b=%d t=%d",
949                      i_button, i_title );
950
951             /* Show all */
952             vlc_mutex_lock( p_mutex );
953             val.b_bool = VLC_FALSE;
954             var_Set( p_sys->p_input, "highlight", val );
955             vlc_mutex_unlock( p_mutex );
956         }
957     }
958 }
959
960 static void ESSubtitleUpdate( demux_t *p_demux )
961 {
962     demux_sys_t *p_sys = p_demux->p_sys;
963     int         i_spu = dvdnav_get_active_spu_stream( p_sys->dvdnav );
964     int32_t i_title, i_part;
965
966     ButtonUpdate( p_demux, 0 );
967
968     dvdnav_current_title_info( p_sys->dvdnav, &i_title, &i_part );
969     if( i_title > 0 ) return;
970
971     if( i_spu >= 0 && i_spu <= 0x1f )
972     {
973         ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(0xbd20 + i_spu)];
974
975         ESNew( p_demux, 0xbd20 + i_spu );
976
977         /* be sure to unselect it (reset) */
978         es_out_Control( p_demux->out, ES_OUT_SET_ES_STATE, tk->es,
979                         (vlc_bool_t)VLC_FALSE );
980
981         /* now select it */
982         es_out_Control( p_demux->out, ES_OUT_SET_ES, tk->es );
983     }
984     else
985     {
986         for( i_spu = 0; i_spu <= 0x1F; i_spu++ )
987         {
988             ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(0xbd20 + i_spu)];
989             if( tk->b_seen )
990             {
991                 es_out_Control( p_demux->out, ES_OUT_SET_ES_STATE, tk->es,
992                                 (vlc_bool_t)VLC_FALSE );
993             }
994         }
995     }
996 }
997
998 /*****************************************************************************
999  * DemuxBlock: demux a given block
1000  *****************************************************************************/
1001 static int DemuxBlock( demux_t *p_demux, uint8_t *pkt, int i_pkt )
1002 {
1003     demux_sys_t *p_sys = p_demux->p_sys;
1004     uint8_t     *p = pkt;
1005
1006     while( p < &pkt[i_pkt] )
1007     {
1008         int i_size = ps_pkt_size( p, &pkt[i_pkt] - p );
1009         block_t *p_pkt;
1010         if( i_size <= 0 )
1011         {
1012             break;
1013         }
1014
1015         /* Create a block */
1016         p_pkt = block_New( p_demux, i_size );
1017         memcpy( p_pkt->p_buffer, p, i_size);
1018
1019         /* Parse it and send it */
1020         switch( 0x100 | p[3] )
1021         {
1022         case 0x1b9:
1023         case 0x1bb:
1024         case 0x1bc:
1025 #ifdef DVDNAV_DEBUG
1026             if( p[3] == 0xbc )
1027             {
1028                 msg_Warn( p_demux, "received a PSM packet" );
1029             }
1030             else if( p[3] == 0xbb )
1031             {
1032                 msg_Warn( p_demux, "received a SYSTEM packet" );
1033             }
1034 #endif
1035             block_Release( p_pkt );
1036             break;
1037
1038         case 0x1ba:
1039         {
1040             int64_t i_scr;
1041             int i_mux_rate;
1042             if( !ps_pkt_parse_pack( p_pkt, &i_scr, &i_mux_rate ) )
1043             {
1044                 es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_scr );
1045                 if( i_mux_rate > 0 ) p_sys->i_mux_rate = i_mux_rate;
1046             }
1047             block_Release( p_pkt );
1048             break;
1049         }
1050         default:
1051         {
1052             int i_id = ps_pkt_id( p_pkt );
1053             if( i_id >= 0xc0 )
1054             {
1055                 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
1056
1057                 if( !tk->b_seen )
1058                 {
1059                     ESNew( p_demux, i_id );
1060                 }
1061                 if( tk->b_seen && tk->es &&
1062                     !ps_pkt_parse_pes( p_pkt, tk->i_skip ) )
1063                 {
1064                     es_out_Send( p_demux->out, tk->es, p_pkt );
1065                 }
1066                 else
1067                 {
1068                     block_Release( p_pkt );
1069                 }
1070             }
1071             else
1072             {
1073                 block_Release( p_pkt );
1074             }
1075             break;
1076         }
1077         }
1078
1079         p += i_size;
1080     }
1081
1082     return VLC_SUCCESS;
1083 }
1084
1085 /*****************************************************************************
1086  * ESNew: register a new elementary stream
1087  *****************************************************************************/
1088 static void ESNew( demux_t *p_demux, int i_id )
1089 {
1090     demux_sys_t *p_sys = p_demux->p_sys;
1091     ps_track_t  *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
1092     vlc_bool_t  b_select = VLC_FALSE;
1093
1094     if( tk->b_seen ) return;
1095
1096     if( ps_track_fill( tk, 0, i_id ) )
1097     {
1098         msg_Warn( p_demux, "unknown codec for id=0x%x", i_id );
1099         return;
1100     }
1101
1102     /* Add a new ES */
1103     if( tk->fmt.i_cat == VIDEO_ES )
1104     {
1105         if( p_sys->i_aspect >= 0 )
1106         {
1107             tk->fmt.video.i_aspect = p_sys->i_aspect;
1108         }
1109         b_select = VLC_TRUE;
1110     }
1111     else if( tk->fmt.i_cat == AUDIO_ES )
1112     {
1113         int i_audio = -1;
1114         /* find the audio number PLEASE find another way */
1115         if( (i_id&0xbdf8) == 0xbd88 )       /* dts */
1116         {
1117             i_audio = i_id&0x07;
1118         }
1119         else if( (i_id&0xbdf0) == 0xbd80 )  /* a52 */
1120         {
1121             i_audio = i_id&0xf;
1122         }
1123         else if( (i_id&0xbdf0) == 0xbda0 )  /* lpcm */
1124         {
1125             i_audio = i_id&0x1f;
1126         }
1127         else if( ( i_id&0xe0 ) == 0xc0 )    /* mpga */
1128         {
1129             i_audio = i_id&0x1f;
1130         }
1131         if( i_audio >= 0 )
1132         {
1133             int i_lang = dvdnav_audio_stream_to_lang( p_sys->dvdnav, i_audio );
1134             if( i_lang != 0xffff )
1135             {
1136                 tk->fmt.psz_language = malloc( 3 );
1137                 tk->fmt.psz_language[0] = (i_lang >> 8)&0xff;
1138                 tk->fmt.psz_language[1] = (i_lang     )&0xff;
1139                 tk->fmt.psz_language[2] = 0;
1140             }
1141             if( dvdnav_get_active_audio_stream( p_sys->dvdnav ) == i_audio )
1142             {
1143                 b_select = VLC_TRUE;
1144             }
1145         }
1146     }
1147     else if( tk->fmt.i_cat == SPU_ES )
1148     {
1149         int32_t i_title, i_part;
1150         int i_lang = dvdnav_spu_stream_to_lang( p_sys->dvdnav, i_id&0x1f );
1151         if( i_lang != 0xffff )
1152         {
1153             tk->fmt.psz_language = malloc( 3 );
1154             tk->fmt.psz_language[0] = (i_lang >> 8)&0xff;
1155             tk->fmt.psz_language[1] = (i_lang     )&0xff;
1156             tk->fmt.psz_language[2] = 0;
1157         }
1158
1159         /* Palette */
1160         tk->fmt.subs.spu.palette[0] = 0xBeef;
1161         memcpy( &tk->fmt.subs.spu.palette[1], p_sys->clut,
1162                 16 * sizeof( uint32_t ) );
1163
1164         /* We select only when we are not in the menu */
1165         dvdnav_current_title_info( p_sys->dvdnav, &i_title, &i_part );
1166         if( i_title > 0 &&
1167             dvdnav_get_active_spu_stream( p_sys->dvdnav ) == (i_id&0x1f) )
1168         {
1169             b_select = VLC_TRUE;
1170         }
1171     }
1172
1173     tk->es = es_out_Add( p_demux->out, &tk->fmt );
1174     if( b_select )
1175     {
1176         es_out_Control( p_demux->out, ES_OUT_SET_ES, tk->es );
1177     }
1178     tk->b_seen = VLC_TRUE;
1179
1180     if( tk->fmt.i_cat == VIDEO_ES ) ButtonUpdate( p_demux, 0 );
1181 }
1182
1183 /*****************************************************************************
1184  * Event handler code
1185  *****************************************************************************/
1186 static int  EventMouse( vlc_object_t *, char const *,
1187                         vlc_value_t, vlc_value_t, void * );
1188 static int  EventKey  ( vlc_object_t *, char const *,
1189                         vlc_value_t, vlc_value_t, void * );
1190
1191 static int EventThread( vlc_object_t *p_this )
1192 {
1193     event_thread_t *p_ev = (event_thread_t*)p_this;
1194     demux_sys_t    *p_sys = p_ev->p_demux->p_sys;
1195     vlc_object_t   *p_vout = NULL;
1196
1197     vlc_mutex_init( p_ev, &p_ev->lock );
1198     p_ev->b_moved   = VLC_FALSE;
1199     p_ev->b_clicked = VLC_FALSE;
1200     p_ev->b_key     = VLC_FALSE;
1201     p_ev->b_still   = VLC_FALSE;
1202
1203     /* catch all key event */
1204     var_AddCallback( p_ev->p_vlc, "key-pressed", EventKey, p_ev );
1205
1206     /* main loop */
1207     while( !p_ev->b_die )
1208     {
1209         vlc_bool_t b_activated = VLC_FALSE;
1210
1211         /* KEY part */
1212         if( p_ev->b_key )
1213         {
1214             pci_t *pci = dvdnav_get_current_nav_pci( p_sys->dvdnav );
1215
1216             vlc_value_t valk;
1217             struct hotkey *p_hotkeys = p_ev->p_vlc->p_hotkeys;
1218             int i, i_action = -1;
1219
1220             vlc_mutex_lock( &p_ev->lock );
1221             var_Get( p_ev->p_vlc, "key-pressed", &valk );
1222             for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
1223             {
1224                 if( p_hotkeys[i].i_key == valk.i_int )
1225                 {
1226                     i_action = p_hotkeys[i].i_action;
1227                 }
1228             }
1229
1230             switch( i_action )
1231             {
1232             case ACTIONID_NAV_LEFT:
1233                 dvdnav_left_button_select( p_sys->dvdnav, pci );
1234                 break;
1235             case ACTIONID_NAV_RIGHT:
1236                 dvdnav_right_button_select( p_sys->dvdnav, pci );
1237                 break;
1238             case ACTIONID_NAV_UP:
1239                 dvdnav_upper_button_select( p_sys->dvdnav, pci );
1240                 break;
1241             case ACTIONID_NAV_DOWN:
1242                 dvdnav_lower_button_select( p_sys->dvdnav, pci );
1243                 break;
1244             case ACTIONID_NAV_ACTIVATE:
1245                 b_activated = VLC_TRUE;
1246                 dvdnav_button_activate( p_sys->dvdnav, pci );
1247                 ButtonUpdate( p_ev->p_demux, VLC_TRUE );
1248                 break;
1249             default:
1250                 break;
1251             }
1252             p_ev->b_key = VLC_FALSE;
1253             vlc_mutex_unlock( &p_ev->lock );
1254         }
1255
1256         /* VOUT part */
1257         if( p_vout && ( p_ev->b_moved || p_ev->b_clicked ) )
1258         {
1259             pci_t *pci = dvdnav_get_current_nav_pci( p_sys->dvdnav );
1260             vlc_value_t valx, valy;
1261
1262             vlc_mutex_lock( &p_ev->lock );
1263             var_Get( p_vout, "mouse-x", &valx );
1264             var_Get( p_vout, "mouse-y", &valy );
1265
1266             if( p_ev->b_moved )
1267             {
1268                 dvdnav_mouse_select( p_sys->dvdnav, pci, valx.i_int,
1269                                      valy.i_int );
1270             }
1271             if( p_ev->b_clicked )
1272             {
1273                 b_activated = VLC_TRUE;
1274                 dvdnav_mouse_activate( p_sys->dvdnav, pci, valx.i_int,
1275                                        valy.i_int );
1276                 ButtonUpdate( p_ev->p_demux, VLC_TRUE );
1277             }
1278
1279             p_ev->b_moved = VLC_FALSE;
1280             p_ev->b_clicked = VLC_FALSE;
1281             vlc_mutex_unlock( &p_ev->lock );
1282         }
1283         if( p_vout && p_vout->b_die )
1284         {
1285             var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
1286             var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
1287             vlc_object_release( p_vout );
1288             p_vout = NULL;
1289         }
1290         if( p_vout == NULL )
1291         {
1292             p_vout = vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT,
1293                                       FIND_CHILD );
1294             if( p_vout)
1295             {
1296                 var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev );
1297                 var_AddCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
1298             }
1299         }
1300
1301         /* Still part */
1302         vlc_mutex_lock( &p_ev->lock );
1303         if( p_ev->b_still )
1304         {
1305             if( /* b_activated || // This breaks menus */
1306                 ( p_ev->i_still_end > 0 && p_ev->i_still_end < mdate() ))
1307             {
1308                 p_ev->b_still = VLC_FALSE;
1309                 dvdnav_still_skip( p_sys->dvdnav );
1310             }
1311         }
1312         vlc_mutex_unlock( &p_ev->lock );
1313
1314         /* Wait a bit */
1315         msleep( 10000 );
1316     }
1317
1318     /* Release callback */
1319     if( p_vout )
1320     {
1321         var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
1322         var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
1323         vlc_object_release( p_vout );
1324     }
1325     var_DelCallback( p_ev->p_vlc, "key-pressed", EventKey, p_ev );
1326
1327     vlc_mutex_destroy( &p_ev->lock );
1328
1329     return VLC_SUCCESS;
1330 }
1331
1332 static int EventMouse( vlc_object_t *p_this, char const *psz_var,
1333                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1334 {
1335     event_thread_t *p_ev = p_data;
1336     vlc_mutex_lock( &p_ev->lock );
1337     if( psz_var[6] == 'c' )
1338         p_ev->b_clicked = VLC_TRUE;
1339     else if( psz_var[6] == 'm' )
1340         p_ev->b_moved = VLC_TRUE;
1341     vlc_mutex_unlock( &p_ev->lock );
1342
1343     return VLC_SUCCESS;
1344 }
1345
1346 static int EventKey( vlc_object_t *p_this, char const *psz_var,
1347                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
1348 {
1349     event_thread_t *p_ev = p_data;
1350     vlc_mutex_lock( &p_ev->lock );
1351     p_ev->b_key = VLC_TRUE;
1352     vlc_mutex_unlock( &p_ev->lock );
1353
1354     return VLC_SUCCESS;
1355 }
1356
1357 /*****************************************************************************
1358  * ProbeDVD: very weak probing that avoids going too often into a dvdnav_open()
1359  *****************************************************************************/
1360 static int ProbeDVD( demux_t *p_demux, char *psz_name )
1361 {
1362 #ifdef HAVE_SYS_STAT_H
1363     struct stat stat_info;
1364     uint8_t pi_anchor[2];
1365     uint16_t i_tag_id = 0;
1366     int i_fd, i_ret;
1367
1368     if( stat( psz_name, &stat_info ) || !S_ISREG( stat_info.st_mode ) )
1369     {
1370         /* Let dvdnav_open() do the probing */
1371         return VLC_SUCCESS;
1372     }
1373
1374     if( (i_fd = open( psz_name, O_RDONLY )) == -1 )
1375     {
1376         /* Let dvdnav_open() do the probing */
1377         return VLC_SUCCESS;
1378     }
1379
1380     /* Try to find the anchor (2 bytes at LBA 256) */
1381     i_ret = VLC_SUCCESS;
1382     if( lseek( i_fd, 256 * DVD_VIDEO_LB_LEN, SEEK_SET ) == -1 )
1383     {
1384         i_ret = VLC_EGENERIC;
1385     }
1386
1387     if( read( i_fd, pi_anchor, 2 ) == 2 )
1388     {
1389         i_tag_id = GetWLE(pi_anchor);
1390         if( i_tag_id != 2 ) i_ret = VLC_EGENERIC; /* Not an anchor */
1391     }
1392     else
1393     {
1394         i_ret = VLC_EGENERIC;
1395     }
1396
1397     close( i_fd );
1398
1399     return i_ret;
1400 #else
1401
1402     return VLC_SUCCESS;
1403 #endif
1404 }