]> git.sesse.net Git - vlc/blob - modules/access/dvdnav.c
* modules/access/dvdnav.c: backport of #11306.
[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
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 *, vlc_bool_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-palette", 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-palette" );
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 = p_sys->i_pgc_length * pos / len;
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, 0 );
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         /* reset PCR */
770         es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
771         dvdnav_wait_skip( p_sys->dvdnav );
772         break;
773
774     default:
775         msg_Warn( p_demux, "Unknown event (0x%x)", i_event );
776         break;
777     }
778
779 #if DVD_READ_CACHE
780     dvdnav_free_cache_block( p_sys->dvdnav, packet );
781 #endif
782
783     return 1;
784 }
785
786 /* Get a 2 char code
787  * FIXME: partiallyy duplicated from src/input/es_out.c
788  */
789 static char *DemuxGetLanguageCode( demux_t *p_demux, char *psz_var )
790 {
791     const iso639_lang_t *pl;
792     char *psz_lang;
793     char *p;
794
795     psz_lang = var_CreateGetString( p_demux, psz_var );
796     /* XXX: we will use only the first value
797      * (and ignore other ones in case of a list) */
798     if( ( p = strchr( psz_lang, ',' ) ) ) *p = '\0';
799
800     for( pl = p_languages; pl->psz_iso639_1 != NULL; pl++ )
801     {
802         if( !strcasecmp( pl->psz_eng_name, psz_lang ) ||
803             !strcasecmp( pl->psz_native_name, psz_lang ) ||
804             !strcasecmp( pl->psz_iso639_1, psz_lang ) ||
805             !strcasecmp( pl->psz_iso639_2T, psz_lang ) ||
806             !strcasecmp( pl->psz_iso639_2B, psz_lang ) )
807             break;
808     }
809
810     free( psz_lang );
811
812     if( pl->psz_iso639_1 != NULL )
813         return strdup( pl->psz_iso639_1 );
814
815     return strdup(LANGUAGE_DEFAULT);
816 }
817
818 static void DemuxTitles( demux_t *p_demux )
819 {
820     demux_sys_t *p_sys = p_demux->p_sys;
821     input_title_t *t;
822     seekpoint_t *s;
823     int32_t i_titles;
824     int i;
825
826     /* Menu */
827     t = vlc_input_title_New();
828     t->b_menu = VLC_TRUE;
829     t->psz_name = strdup( "DVD Menu" );
830
831     s = vlc_seekpoint_New();
832     s->psz_name = strdup( "Resume" );
833     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
834
835     s = vlc_seekpoint_New();
836     s->psz_name = strdup( "Root" );
837     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
838
839     s = vlc_seekpoint_New();
840     s->psz_name = strdup( "Title" );
841     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
842
843     s = vlc_seekpoint_New();
844     s->psz_name = strdup( "Chapter" );
845     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
846
847     s = vlc_seekpoint_New();
848     s->psz_name = strdup( "Subtitle" );
849     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
850
851     s = vlc_seekpoint_New();
852     s->psz_name = strdup( "Audio" );
853     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
854
855     s = vlc_seekpoint_New();
856     s->psz_name = strdup( "Angle" );
857     TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
858
859     TAB_APPEND( p_sys->i_title, p_sys->title, t );
860
861     /* Find out number of titles/chapters */
862     dvdnav_get_number_of_titles( p_sys->dvdnav, &i_titles );
863     for( i = 1; i <= i_titles; i++ )
864     {
865         int32_t i_chapters = 0;
866         int j;
867
868         dvdnav_get_number_of_parts( p_sys->dvdnav, i, &i_chapters );
869
870         t = vlc_input_title_New();
871         for( j = 0; j < __MAX( i_chapters, 1 ); j++ )
872         {
873             s = vlc_seekpoint_New();
874             TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
875         }
876
877         TAB_APPEND( p_sys->i_title, p_sys->title, t );
878     }
879 }
880
881 /*****************************************************************************
882  * Update functions:
883  *****************************************************************************/
884 static void ButtonUpdate( demux_t *p_demux, vlc_bool_t b_mode )
885 {
886     demux_sys_t *p_sys = p_demux->p_sys;
887     vlc_value_t val;
888     int32_t i_title, i_part;
889
890     dvdnav_current_title_info( p_sys->dvdnav, &i_title, &i_part );
891
892     if( var_Get( p_sys->p_input, "highlight-mutex", &val ) == VLC_SUCCESS )
893     {
894         vlc_mutex_t *p_mutex = val.p_address;
895         dvdnav_highlight_area_t hl;
896         int32_t i_button;
897
898         if( dvdnav_get_current_highlight( p_sys->dvdnav, &i_button )
899             != DVDNAV_STATUS_OK )
900         {
901             msg_Err( p_demux, "dvdnav_get_current_highlight failed" );
902             return;
903         }
904
905         if( i_button > 0 && i_title ==  0 )
906         {
907             int i;
908             pci_t *pci = dvdnav_get_current_nav_pci( p_sys->dvdnav );
909
910             dvdnav_get_highlight_area( pci, i_button, b_mode, &hl );
911
912             for( i = 0; i < 4; i++ )
913             {
914                 uint32_t i_yuv = p_sys->clut[(hl.palette>>(16+i*4))&0x0f];
915                 uint8_t i_alpha = (hl.palette>>(i*4))&0x0f;
916                 i_alpha = i_alpha == 0xf ? 0xff : i_alpha << 4;
917
918                 p_sys->palette[i][0] = (i_yuv >> 16) & 0xff;
919                 p_sys->palette[i][1] = (i_yuv >> 0) & 0xff;
920                 p_sys->palette[i][2] = (i_yuv >> 8) & 0xff;
921                 p_sys->palette[i][3] = i_alpha;
922             }
923
924             vlc_mutex_lock( p_mutex );
925             val.i_int = hl.sx; var_Set( p_sys->p_input, "x-start", val );
926             val.i_int = hl.ex; var_Set( p_sys->p_input, "x-end", val );
927             val.i_int = hl.sy; var_Set( p_sys->p_input, "y-start", val );
928             val.i_int = hl.ey; var_Set( p_sys->p_input, "y-end", val );
929
930             val.p_address = (void *)p_sys->palette;
931             var_Set( p_sys->p_input, "menu-palette", val );
932
933             val.b_bool = VLC_TRUE; var_Set( p_sys->p_input, "highlight", val );
934             vlc_mutex_unlock( p_mutex );
935
936             msg_Dbg( p_demux, "buttonUpdate %d", i_button );
937         }
938         else
939         {
940             msg_Dbg( p_demux, "buttonUpdate not done b=%d t=%d",
941                      i_button, i_title );
942
943             /* Show all */
944             vlc_mutex_lock( p_mutex );
945             val.b_bool = VLC_FALSE;
946             var_Set( p_sys->p_input, "highlight", val );
947             vlc_mutex_unlock( p_mutex );
948         }
949     }
950 }
951
952 static void ESSubtitleUpdate( demux_t *p_demux )
953 {
954     demux_sys_t *p_sys = p_demux->p_sys;
955     int         i_spu = dvdnav_get_active_spu_stream( p_sys->dvdnav );
956     int32_t i_title, i_part;
957
958     ButtonUpdate( p_demux, 0 );
959
960     dvdnav_current_title_info( p_sys->dvdnav, &i_title, &i_part );
961     if( i_title > 0 ) return;
962
963     if( i_spu >= 0 && i_spu <= 0x1f )
964     {
965         ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(0xbd20 + i_spu)];
966
967         ESNew( p_demux, 0xbd20 + i_spu );
968
969         /* be sure to unselect it (reset) */
970         es_out_Control( p_demux->out, ES_OUT_SET_ES_STATE, tk->es,
971                         (vlc_bool_t)VLC_FALSE );
972
973         /* now select it */
974         es_out_Control( p_demux->out, ES_OUT_SET_ES, tk->es );
975     }
976     else
977     {
978         for( i_spu = 0; i_spu <= 0x1F; i_spu++ )
979         {
980             ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(0xbd20 + i_spu)];
981             if( tk->b_seen )
982             {
983                 es_out_Control( p_demux->out, ES_OUT_SET_ES_STATE, tk->es,
984                                 (vlc_bool_t)VLC_FALSE );
985             }
986         }
987     }
988 }
989
990 /*****************************************************************************
991  * DemuxBlock: demux a given block
992  *****************************************************************************/
993 static int DemuxBlock( demux_t *p_demux, uint8_t *pkt, int i_pkt )
994 {
995     demux_sys_t *p_sys = p_demux->p_sys;
996     uint8_t     *p = pkt;
997
998     while( p < &pkt[i_pkt] )
999     {
1000         int i_size = ps_pkt_size( p, &pkt[i_pkt] - p );
1001         block_t *p_pkt;
1002         if( i_size <= 0 )
1003         {
1004             break;
1005         }
1006
1007         /* Create a block */
1008         p_pkt = block_New( p_demux, i_size );
1009         memcpy( p_pkt->p_buffer, p, i_size);
1010
1011         /* Parse it and send it */
1012         switch( 0x100 | p[3] )
1013         {
1014         case 0x1b9:
1015         case 0x1bb:
1016         case 0x1bc:
1017 #ifdef DVDNAV_DEBUG
1018             if( p[3] == 0xbc )
1019             {
1020                 msg_Warn( p_demux, "received a PSM packet" );
1021             }
1022             else if( p[3] == 0xbb )
1023             {
1024                 msg_Warn( p_demux, "received a SYSTEM packet" );
1025             }
1026 #endif
1027             block_Release( p_pkt );
1028             break;
1029
1030         case 0x1ba:
1031         {
1032             int64_t i_scr;
1033             int i_mux_rate;
1034             if( !ps_pkt_parse_pack( p_pkt, &i_scr, &i_mux_rate ) )
1035             {
1036                 es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_scr );
1037                 if( i_mux_rate > 0 ) p_sys->i_mux_rate = i_mux_rate;
1038             }
1039             block_Release( p_pkt );
1040             break;
1041         }
1042         default:
1043         {
1044             int i_id = ps_pkt_id( p_pkt );
1045             if( i_id >= 0xc0 )
1046             {
1047                 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
1048
1049                 if( !tk->b_seen )
1050                 {
1051                     ESNew( p_demux, i_id );
1052                 }
1053                 if( tk->b_seen && tk->es &&
1054                     !ps_pkt_parse_pes( p_pkt, tk->i_skip ) )
1055                 {
1056                     es_out_Send( p_demux->out, tk->es, p_pkt );
1057                 }
1058                 else
1059                 {
1060                     block_Release( p_pkt );
1061                 }
1062             }
1063             else
1064             {
1065                 block_Release( p_pkt );
1066             }
1067             break;
1068         }
1069         }
1070
1071         p += i_size;
1072     }
1073
1074     return VLC_SUCCESS;
1075 }
1076
1077 /*****************************************************************************
1078  * ESNew: register a new elementary stream
1079  *****************************************************************************/
1080 static void ESNew( demux_t *p_demux, int i_id )
1081 {
1082     demux_sys_t *p_sys = p_demux->p_sys;
1083     ps_track_t  *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
1084     vlc_bool_t  b_select = VLC_FALSE;
1085
1086     if( tk->b_seen ) return;
1087
1088     if( ps_track_fill( tk, 0, i_id ) )
1089     {
1090         msg_Warn( p_demux, "unknown codec for id=0x%x", i_id );
1091         return;
1092     }
1093
1094     /* Add a new ES */
1095     if( tk->fmt.i_cat == VIDEO_ES )
1096     {
1097         if( p_sys->i_aspect >= 0 )
1098         {
1099             tk->fmt.video.i_aspect = p_sys->i_aspect;
1100         }
1101         b_select = VLC_TRUE;
1102     }
1103     else if( tk->fmt.i_cat == AUDIO_ES )
1104     {
1105         int i_audio = -1;
1106         /* find the audio number PLEASE find another way */
1107         if( (i_id&0xbdf8) == 0xbd88 )       /* dts */
1108         {
1109             i_audio = i_id&0x07;
1110         }
1111         else if( (i_id&0xbdf0) == 0xbd80 )  /* a52 */
1112         {
1113             i_audio = i_id&0xf;
1114         }
1115         else if( (i_id&0xbdf0) == 0xbda0 )  /* lpcm */
1116         {
1117             i_audio = i_id&0x1f;
1118         }
1119         else if( ( i_id&0xe0 ) == 0xc0 )    /* mpga */
1120         {
1121             i_audio = i_id&0x1f;
1122         }
1123         if( i_audio >= 0 )
1124         {
1125             int i_lang = dvdnav_audio_stream_to_lang( p_sys->dvdnav, i_audio );
1126             if( i_lang != 0xffff )
1127             {
1128                 tk->fmt.psz_language = malloc( 3 );
1129                 tk->fmt.psz_language[0] = (i_lang >> 8)&0xff;
1130                 tk->fmt.psz_language[1] = (i_lang     )&0xff;
1131                 tk->fmt.psz_language[2] = 0;
1132             }
1133             if( dvdnav_get_active_audio_stream( p_sys->dvdnav ) == i_audio )
1134             {
1135                 b_select = VLC_TRUE;
1136             }
1137         }
1138     }
1139     else if( tk->fmt.i_cat == SPU_ES )
1140     {
1141         int32_t i_title, i_part;
1142         int i_lang = dvdnav_spu_stream_to_lang( p_sys->dvdnav, i_id&0x1f );
1143         if( i_lang != 0xffff )
1144         {
1145             tk->fmt.psz_language = malloc( 3 );
1146             tk->fmt.psz_language[0] = (i_lang >> 8)&0xff;
1147             tk->fmt.psz_language[1] = (i_lang     )&0xff;
1148             tk->fmt.psz_language[2] = 0;
1149         }
1150
1151         /* Palette */
1152         tk->fmt.subs.spu.palette[0] = 0xBeef;
1153         memcpy( &tk->fmt.subs.spu.palette[1], p_sys->clut,
1154                 16 * sizeof( uint32_t ) );
1155
1156         /* We select only when we are not in the menu */
1157         dvdnav_current_title_info( p_sys->dvdnav, &i_title, &i_part );
1158         if( i_title > 0 &&
1159             dvdnav_get_active_spu_stream( p_sys->dvdnav ) == (i_id&0x1f) )
1160         {
1161             b_select = VLC_TRUE;
1162         }
1163     }
1164
1165     tk->es = es_out_Add( p_demux->out, &tk->fmt );
1166     if( b_select )
1167     {
1168         es_out_Control( p_demux->out, ES_OUT_SET_ES, tk->es );
1169     }
1170     tk->b_seen = VLC_TRUE;
1171
1172     if( tk->fmt.i_cat == VIDEO_ES ) ButtonUpdate( p_demux, 0 );
1173 }
1174
1175 /*****************************************************************************
1176  * Event handler code
1177  *****************************************************************************/
1178 static int  EventMouse( vlc_object_t *, char const *,
1179                         vlc_value_t, vlc_value_t, void * );
1180 static int  EventKey  ( vlc_object_t *, char const *,
1181                         vlc_value_t, vlc_value_t, void * );
1182
1183 static int EventThread( vlc_object_t *p_this )
1184 {
1185     event_thread_t *p_ev = (event_thread_t*)p_this;
1186     demux_sys_t    *p_sys = p_ev->p_demux->p_sys;
1187     vlc_object_t   *p_vout = NULL;
1188
1189     vlc_mutex_init( p_ev, &p_ev->lock );
1190     p_ev->b_moved   = VLC_FALSE;
1191     p_ev->b_clicked = VLC_FALSE;
1192     p_ev->b_key     = VLC_FALSE;
1193     p_ev->b_still   = VLC_FALSE;
1194
1195     /* catch all key event */
1196     var_AddCallback( p_ev->p_vlc, "key-pressed", EventKey, p_ev );
1197
1198     /* main loop */
1199     while( !p_ev->b_die )
1200     {
1201         vlc_bool_t b_activated = VLC_FALSE;
1202
1203         /* KEY part */
1204         if( p_ev->b_key )
1205         {
1206             pci_t *pci = dvdnav_get_current_nav_pci( p_sys->dvdnav );
1207
1208             vlc_value_t valk;
1209             struct hotkey *p_hotkeys = p_ev->p_vlc->p_hotkeys;
1210             int i, i_action = -1;
1211
1212             vlc_mutex_lock( &p_ev->lock );
1213             var_Get( p_ev->p_vlc, "key-pressed", &valk );
1214             for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
1215             {
1216                 if( p_hotkeys[i].i_key == valk.i_int )
1217                 {
1218                     i_action = p_hotkeys[i].i_action;
1219                 }
1220             }
1221
1222             switch( i_action )
1223             {
1224             case ACTIONID_NAV_LEFT:
1225                 dvdnav_left_button_select( p_sys->dvdnav, pci );
1226                 break;
1227             case ACTIONID_NAV_RIGHT:
1228                 dvdnav_right_button_select( p_sys->dvdnav, pci );
1229                 break;
1230             case ACTIONID_NAV_UP:
1231                 dvdnav_upper_button_select( p_sys->dvdnav, pci );
1232                 break;
1233             case ACTIONID_NAV_DOWN:
1234                 dvdnav_lower_button_select( p_sys->dvdnav, pci );
1235                 break;
1236             case ACTIONID_NAV_ACTIVATE:
1237                 b_activated = VLC_TRUE;
1238                 dvdnav_button_activate( p_sys->dvdnav, pci );
1239                 ButtonUpdate( p_ev->p_demux, VLC_TRUE );
1240                 break;
1241             default:
1242                 break;
1243             }
1244             p_ev->b_key = VLC_FALSE;
1245             vlc_mutex_unlock( &p_ev->lock );
1246         }
1247
1248         /* VOUT part */
1249         if( p_vout && ( p_ev->b_moved || p_ev->b_clicked ) )
1250         {
1251             pci_t *pci = dvdnav_get_current_nav_pci( p_sys->dvdnav );
1252             vlc_value_t valx, valy;
1253
1254             vlc_mutex_lock( &p_ev->lock );
1255             var_Get( p_vout, "mouse-x", &valx );
1256             var_Get( p_vout, "mouse-y", &valy );
1257
1258             if( p_ev->b_moved )
1259             {
1260                 dvdnav_mouse_select( p_sys->dvdnav, pci, valx.i_int,
1261                                      valy.i_int );
1262             }
1263             if( p_ev->b_clicked )
1264             {
1265                 b_activated = VLC_TRUE;
1266                 dvdnav_mouse_activate( p_sys->dvdnav, pci, valx.i_int,
1267                                        valy.i_int );
1268                 ButtonUpdate( p_ev->p_demux, VLC_TRUE );
1269             }
1270
1271             p_ev->b_moved = VLC_FALSE;
1272             p_ev->b_clicked = VLC_FALSE;
1273             vlc_mutex_unlock( &p_ev->lock );
1274         }
1275         if( p_vout && p_vout->b_die )
1276         {
1277             var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
1278             var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
1279             vlc_object_release( p_vout );
1280             p_vout = NULL;
1281         }
1282         if( p_vout == NULL )
1283         {
1284             p_vout = vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT,
1285                                       FIND_CHILD );
1286             if( p_vout)
1287             {
1288                 var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev );
1289                 var_AddCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
1290             }
1291         }
1292
1293         /* Still part */
1294         vlc_mutex_lock( &p_ev->lock );
1295         if( p_ev->b_still )
1296         {
1297             if( /* b_activated || // This breaks menus */
1298                 ( p_ev->i_still_end > 0 && p_ev->i_still_end < mdate() ))
1299             {
1300                 p_ev->b_still = VLC_FALSE;
1301                 dvdnav_still_skip( p_sys->dvdnav );
1302             }
1303         }
1304         vlc_mutex_unlock( &p_ev->lock );
1305
1306         /* Wait a bit */
1307         msleep( 10000 );
1308     }
1309
1310     /* Release callback */
1311     if( p_vout )
1312     {
1313         var_DelCallback( p_vout, "mouse-moved", EventMouse, p_ev );
1314         var_DelCallback( p_vout, "mouse-clicked", EventMouse, p_ev );
1315         vlc_object_release( p_vout );
1316     }
1317     var_DelCallback( p_ev->p_vlc, "key-pressed", EventKey, p_ev );
1318
1319     vlc_mutex_destroy( &p_ev->lock );
1320
1321     return VLC_SUCCESS;
1322 }
1323
1324 static int EventMouse( vlc_object_t *p_this, char const *psz_var,
1325                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1326 {
1327     event_thread_t *p_ev = p_data;
1328     vlc_mutex_lock( &p_ev->lock );
1329     if( psz_var[6] == 'c' )
1330         p_ev->b_clicked = VLC_TRUE;
1331     else if( psz_var[6] == 'm' )
1332         p_ev->b_moved = VLC_TRUE;
1333     vlc_mutex_unlock( &p_ev->lock );
1334
1335     return VLC_SUCCESS;
1336 }
1337
1338 static int EventKey( vlc_object_t *p_this, char const *psz_var,
1339                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
1340 {
1341     event_thread_t *p_ev = p_data;
1342     vlc_mutex_lock( &p_ev->lock );
1343     p_ev->b_key = VLC_TRUE;
1344     vlc_mutex_unlock( &p_ev->lock );
1345
1346     return VLC_SUCCESS;
1347 }
1348
1349 /*****************************************************************************
1350  * ProbeDVD: very weak probing that avoids going too often into a dvdnav_open()
1351  *****************************************************************************/
1352 static int ProbeDVD( demux_t *p_demux, char *psz_name )
1353 {
1354 #ifdef HAVE_SYS_STAT_H
1355     struct stat stat_info;
1356     uint8_t pi_anchor[2];
1357     uint16_t i_tag_id = 0;
1358     int i_fd, i_ret;
1359
1360     if( stat( psz_name, &stat_info ) || !S_ISREG( stat_info.st_mode ) )
1361     {
1362         /* Let dvdnav_open() do the probing */
1363         return VLC_SUCCESS;
1364     }
1365
1366     if( (i_fd = open( psz_name, O_RDONLY )) == -1 )
1367     {
1368         /* Let dvdnav_open() do the probing */
1369         return VLC_SUCCESS;
1370     }
1371
1372     /* Try to find the anchor (2 bytes at LBA 256) */
1373     i_ret = VLC_SUCCESS;
1374     if( lseek( i_fd, 256 * DVD_VIDEO_LB_LEN, SEEK_SET ) == -1 )
1375     {
1376         i_ret = VLC_EGENERIC;
1377     }
1378
1379     if( read( i_fd, pi_anchor, 2 ) == 2 )
1380     {
1381         i_tag_id = GetWLE(pi_anchor);
1382         if( i_tag_id != 2 ) i_ret = VLC_EGENERIC; /* Not an anchor */
1383     }
1384     else
1385     {
1386         i_ret = VLC_EGENERIC;
1387     }
1388
1389     close( i_fd );
1390
1391     return i_ret;
1392 #else
1393
1394     return VLC_SUCCESS;
1395 #endif
1396 }