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