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