]> git.sesse.net Git - vlc/blob - modules/access/bluray.c
bluray: use navigation keys (DEMUX_NAV_...)
[vlc] / modules / access / bluray.c
1 /*****************************************************************************
2  * bluray.c: Blu-ray disc support plugin
3  *****************************************************************************
4  * Copyright © 2010-2012 VideoLAN, VLC authors and libbluray AUTHORS
5  *
6  * Authors: Jean-Baptiste Kempf <jb@videolan.org>
7  *          Hugo Beauzée-Luyssen <hugo@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <assert.h>
29 #include <limits.h>                         /* PATH_MAX */
30 #if defined (HAVE_MNTENT_H) && defined(HAVE_SYS_STAT_H)
31 #include <mntent.h>
32 #include <sys/stat.h>
33 #endif
34
35 #ifdef __APPLE__
36 #include <sys/stat.h>
37 #include <sys/param.h>
38 #include <sys/ucred.h>
39 #include <sys/mount.h>
40 #endif
41
42 #include <vlc_common.h>
43 #include <vlc_plugin.h>
44 #include <vlc_demux.h>                      /* demux_t */
45 #include <vlc_input.h>                      /* Seekpoints, chapters */
46 #include <vlc_atomic.h>
47 #include <vlc_dialog.h>                     /* BD+/AACS warnings */
48 #include <vlc_vout.h>                       /* vout_PutSubpicture / subpicture_t */
49 #include <vlc_url.h>                        /* vlc_path2uri */
50
51 #include <libbluray/bluray.h>
52 #include <libbluray/keys.h>
53 #include <libbluray/meta_data.h>
54 #include <libbluray/overlay.h>
55
56 /*****************************************************************************
57  * Module descriptor
58  *****************************************************************************/
59
60 #define BD_MENU_TEXT        N_( "Blu-ray menus" )
61 #define BD_MENU_LONGTEXT    N_( "Use Blu-ray menus. If disabled, "\
62                                 "the movie will start directly" )
63
64 /* Callbacks */
65 static int  blurayOpen ( vlc_object_t * );
66 static void blurayClose( vlc_object_t * );
67
68 vlc_module_begin ()
69     set_shortname( N_("Blu-ray") )
70     set_description( N_("Blu-ray Disc support (libbluray)") )
71
72     set_category( CAT_INPUT )
73     set_subcategory( SUBCAT_INPUT_ACCESS )
74     set_capability( "access_demux", 200)
75     add_bool( "bluray-menu", false, BD_MENU_TEXT, BD_MENU_LONGTEXT, false )
76
77     add_shortcut( "bluray", "file" )
78
79     set_callbacks( blurayOpen, blurayClose )
80 vlc_module_end ()
81
82 /* libbluray's overlay.h defines 2 types of overlay (bd_overlay_plane_e). */
83 #define MAX_OVERLAY 2
84
85 typedef enum OverlayStatus {
86     Closed = 0,
87     ToDisplay,  //Used to mark the overlay to be displayed the first time.
88     Displayed,
89     Outdated    //used to update the overlay after it has been sent to the vout
90 } OverlayStatus;
91
92 typedef struct bluray_overlay_t
93 {
94     atomic_flag         released_once;
95     vlc_mutex_t         lock;
96     subpicture_t        *p_pic;
97     OverlayStatus       status;
98     subpicture_region_t *p_regions;
99 } bluray_overlay_t;
100
101 struct  demux_sys_t
102 {
103     BLURAY              *bluray;
104
105     /* Titles */
106     unsigned int        i_title;
107     unsigned int        i_longest_title;
108     unsigned int        i_current_clip;
109     input_title_t       **pp_title;
110
111     /* Meta informations */
112     const META_DL       *p_meta;
113
114     /* Menus */
115     bluray_overlay_t    *p_overlays[MAX_OVERLAY];
116     int                 current_overlay; // -1 if no current overlay;
117     bool                b_menu;
118
119     /* */
120     input_thread_t      *p_input;
121     vout_thread_t       *p_vout;
122
123     /* TS stream */
124     es_out_t            *p_out;
125     vlc_array_t         es;
126     int                 i_audio_stream; /* Selected audio stream. -1 if default */
127     int                 i_video_stream;
128     stream_t            *p_parser;
129
130     /* Used to store bluray disc path */
131     char                *psz_bd_path;
132 };
133
134 struct subpicture_updater_sys_t
135 {
136     bluray_overlay_t    *p_overlay;
137 };
138
139 /*****************************************************************************
140  * Local prototypes
141  *****************************************************************************/
142 static es_out_t *esOutNew( demux_t *p_demux );
143
144 static int   blurayControl(demux_t *, int, va_list);
145 static int   blurayDemux(demux_t *);
146
147 static int   blurayInitTitles(demux_t *p_demux );
148 static int   bluraySetTitle(demux_t *p_demux, int i_title);
149
150 static void  blurayOverlayProc(void *ptr, const BD_OVERLAY * const overlay);
151
152 static int   onMouseEvent(vlc_object_t *p_vout, const char *psz_var,
153                           vlc_value_t old, vlc_value_t val, void *p_data);
154
155 static void  blurayResetParser(demux_t *p_demux);
156
157 #define FROM_TICKS(a) (a*CLOCK_FREQ / INT64_C(90000))
158 #define TO_TICKS(a)   (a*INT64_C(90000)/CLOCK_FREQ)
159 #define CUR_LENGTH    p_sys->pp_title[p_demux->info.i_title]->i_length
160
161 /*****************************************************************************
162  * blurayOpen: module init function
163  *****************************************************************************/
164 static int blurayOpen( vlc_object_t *object )
165 {
166     demux_t *p_demux = (demux_t*)object;
167     demux_sys_t *p_sys;
168
169     const char *error_msg = NULL;
170
171     if (strcmp(p_demux->psz_access, "bluray")) {
172         // TODO BDMV support, once we figure out what to do in libbluray
173         return VLC_EGENERIC;
174     }
175
176     /* */
177     p_demux->p_sys = p_sys = calloc(1, sizeof(*p_sys));
178     if (unlikely(!p_sys)) {
179         return VLC_ENOMEM;
180     }
181     p_sys->current_overlay = -1;
182     p_sys->i_audio_stream = -1;
183     p_sys->i_video_stream = -1;
184
185     /* init demux info fields */
186     p_demux->info.i_update    = 0;
187     p_demux->info.i_title     = 0;
188     p_demux->info.i_seekpoint = 0;
189
190     TAB_INIT( p_sys->i_title, p_sys->pp_title );
191
192     /* store current bd path */
193     if (p_demux->psz_file) {
194         p_sys->psz_bd_path = strndup(p_demux->psz_file, strlen(p_demux->psz_file));
195     }
196
197 #if defined (HAVE_MNTENT_H) && defined (HAVE_SYS_STAT_H)
198     /* If we're passed a block device, try to convert it to the mount point. */
199     struct stat st;
200     if ( !stat (p_sys->psz_bd_path, &st)) {
201         if (S_ISBLK (st.st_mode)) {
202             FILE* mtab = setmntent ("/proc/self/mounts", "r");
203             struct mntent* m;
204             struct mntent mbuf;
205             char buf [8192];
206             /* bd path may be a symlink (e.g. /dev/dvd -> /dev/sr0), so make
207              * sure we look up the real device */
208             char* bd_device = realpath(p_sys->psz_bd_path, NULL);
209             while ((m = getmntent_r (mtab, &mbuf, buf, sizeof(buf))) != NULL) {
210                 if (!strcmp (m->mnt_fsname, (bd_device == NULL ? p_sys->psz_bd_path : bd_device))) {
211                     p_sys->psz_bd_path = strndup(m->mnt_dir, strlen(m->mnt_dir));
212                     break;
213                 }
214             }
215             free(bd_device);
216             endmntent (mtab);
217         }
218     }
219 #endif /* HAVE_MNTENT_H && HAVE_SYS_STAT_H */
220 #ifdef __APPLE__
221     /* If we're passed a block device, try to convert it to the mount point. */
222     struct stat st;
223     if ( !stat (p_sys->psz_bd_path, &st)) {
224         if (S_ISBLK (st.st_mode)) {
225             struct statfs mbuf[128];
226             int fs_count;
227
228             if ( (fs_count = getfsstat (NULL, 0, MNT_NOWAIT)) > 0 ) {
229                 getfsstat (mbuf, fs_count * sizeof(mbuf[0]), MNT_NOWAIT);
230                 for ( int i = 0; i < fs_count; ++i) {
231                     if (!strcmp (mbuf[i].f_mntfromname, p_sys->psz_bd_path)) {
232                         p_sys->psz_bd_path = strndup(mbuf[i].f_mntonname, strlen(mbuf[i].f_mntonname));
233                     }
234                 }
235             }
236         }
237     }
238 #endif
239     p_sys->bluray = bd_open(p_sys->psz_bd_path, NULL);
240     if (!p_sys->bluray) {
241         free(p_sys);
242         return VLC_EGENERIC;
243     }
244
245     /* Warning the user about AACS/BD+ */
246     const BLURAY_DISC_INFO *disc_info = bd_get_disc_info(p_sys->bluray);
247
248     /* Is it a bluray? */
249     if (!disc_info->bluray_detected) {
250         error_msg = "Path doesn't appear to be a Blu-ray";
251         goto error;
252     }
253
254     msg_Info(p_demux, "First play: %i, Top menu: %i\n"
255                       "HDMV Titles: %i, BD-J Titles: %i, Other: %i",
256              disc_info->first_play_supported, disc_info->top_menu_supported,
257              disc_info->num_hdmv_titles, disc_info->num_bdj_titles,
258              disc_info->num_unsupported_titles);
259
260     /* AACS */
261     if (disc_info->aacs_detected) {
262         if (!disc_info->libaacs_detected) {
263             error_msg = _("This Blu-ray Disc needs a library for AACS decoding, "
264                       "and your system does not have it.");
265             goto error;
266         }
267         if (!disc_info->aacs_handled) {
268 #ifdef BD_AACS_CORRUPTED_DISC
269             if (disc_info->aacs_error_code) {
270                 switch (disc_info->aacs_error_code) {
271                     case BD_AACS_CORRUPTED_DISC:
272                         error_msg = _("Blu-ray Disc is corrupted.");
273                         break;
274                     case BD_AACS_NO_CONFIG:
275                         error_msg = _("Missing AACS configuration file!");
276                         break;
277                     case BD_AACS_NO_PK:
278                         error_msg = _("No valid processing key found in AACS config file.");
279                         break;
280                     case BD_AACS_NO_CERT:
281                         error_msg = _("No valid host certificate found in AACS config file.");
282                         break;
283                     case BD_AACS_CERT_REVOKED:
284                         error_msg = _("AACS Host certificate revoked.");
285                         break;
286                     case BD_AACS_MMC_FAILED:
287                         error_msg = _("AACS MMC failed.");
288                         break;
289                 }
290                 goto error;
291             }
292 #else
293             error_msg = _("Your system AACS decoding library does not work. "
294                       "Missing keys?");
295             goto error;
296 #endif /* BD_AACS_CORRUPTED_DISC */
297         }
298     }
299
300     /* BD+ */
301     if (disc_info->bdplus_detected) {
302         if (!disc_info->libbdplus_detected) {
303             error_msg = _("This Blu-ray Disc needs a library for BD+ decoding, "
304                       "and your system does not have it.");
305             goto error;
306         }
307         if (!disc_info->bdplus_handled) {
308             error_msg = _("Your system BD+ decoding library does not work. "
309                       "Missing configuration?");
310             goto error;
311         }
312     }
313
314     /* Get titles and chapters */
315     p_sys->p_meta = bd_get_meta(p_sys->bluray);
316     if (!p_sys->p_meta)
317         msg_Warn(p_demux, "Failed to get meta info." );
318
319     if (blurayInitTitles(p_demux) != VLC_SUCCESS) {
320         goto error;
321     }
322
323     /*
324      * Initialize the event queue, so we can receive events in blurayDemux(Menu).
325      */
326     bd_get_event(p_sys->bluray, NULL);
327
328     p_sys->b_menu = var_InheritBool(p_demux, "bluray-menu");
329     if (p_sys->b_menu) {
330         p_sys->p_input = demux_GetParentInput(p_demux);
331         if (unlikely(!p_sys->p_input)) {
332             error_msg = "Could not get parent input";
333             goto error;
334         }
335
336         /* libbluray will start playback from "First-Title" title */
337         if (bd_play(p_sys->bluray) == 0) {
338             error_msg = "Failed to start bluray playback. Please try without menu support.";
339             goto error;
340         }
341         /* Registering overlay event handler */
342         bd_register_overlay_proc(p_sys->bluray, p_demux, blurayOverlayProc);
343     } else {
344         /* set start title number */
345         if (bluraySetTitle(p_demux, p_sys->i_longest_title) != VLC_SUCCESS) {
346             msg_Err( p_demux, "Could not set the title %d", p_sys->i_longest_title );
347             goto error;
348         }
349     }
350
351     vlc_array_init(&p_sys->es);
352     p_sys->p_out = esOutNew( p_demux );
353     if (unlikely(p_sys->p_out == NULL)) {
354         goto error;
355     }
356
357     blurayResetParser( p_demux );
358     if (!p_sys->p_parser) {
359         msg_Err(p_demux, "Failed to create TS demuxer");
360         goto error;
361     }
362
363     p_demux->pf_control = blurayControl;
364     p_demux->pf_demux   = blurayDemux;
365
366     return VLC_SUCCESS;
367
368 error:
369     if (error_msg)
370         dialog_Fatal(p_demux, _("Blu-ray error"), "%s", error_msg);
371     blurayClose(object);
372     return VLC_EGENERIC;
373 }
374
375
376 /*****************************************************************************
377  * blurayClose: module destroy function
378  *****************************************************************************/
379 static void blurayClose( vlc_object_t *object )
380 {
381     demux_t *p_demux = (demux_t*)object;
382     demux_sys_t *p_sys = p_demux->p_sys;
383
384     /*
385      * Close libbluray first.
386      * This will close all the overlays before we release p_vout
387      * bd_close( NULL ) can crash
388      */
389     assert(p_sys->bluray);
390     bd_close(p_sys->bluray);
391
392     if (p_sys->p_vout != NULL) {
393         var_DelCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
394         var_DelCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
395         vlc_object_release(p_sys->p_vout);
396     }
397     if (p_sys->p_input != NULL)
398         vlc_object_release(p_sys->p_input);
399     if (p_sys->p_parser)
400         stream_Delete(p_sys->p_parser);
401     if (p_sys->p_out != NULL)
402         es_out_Delete(p_sys->p_out);
403     assert( vlc_array_count(&p_sys->es) == 0 );
404     vlc_array_clear( &p_sys->es );
405
406     /* Titles */
407     for (unsigned int i = 0; i < p_sys->i_title; i++)
408         vlc_input_title_Delete(p_sys->pp_title[i]);
409     TAB_CLEAN( p_sys->i_title, p_sys->pp_title );
410
411     free(p_sys->psz_bd_path);
412     free(p_sys);
413 }
414
415 /*****************************************************************************
416  * Elementary streams handling
417  *****************************************************************************/
418
419 struct es_out_sys_t {
420     demux_t *p_demux;
421 };
422
423 typedef struct  fmt_es_pair {
424     int         i_id;
425     es_out_id_t *p_es;
426 }               fmt_es_pair_t;
427
428 static int  findEsPairIndex( demux_sys_t *p_sys, int i_id )
429 {
430     for ( int i = 0; i < vlc_array_count(&p_sys->es); ++i ) {
431         if ( ((fmt_es_pair_t*)vlc_array_item_at_index(&p_sys->es, i))->i_id == i_id )
432             return i;
433     }
434     return -1;
435 }
436
437 static int  findEsPairIndexByEs( demux_sys_t *p_sys, es_out_id_t *p_es )
438 {
439     for ( int i = 0; i < vlc_array_count(&p_sys->es); ++i ) {
440         if ( ((fmt_es_pair_t*)vlc_array_item_at_index(&p_sys->es, i))->p_es == p_es )
441             return i;
442     }
443     return -1;
444 }
445
446 static es_out_id_t *esOutAdd( es_out_t *p_out, const es_format_t *p_fmt )
447 {
448     demux_sys_t *p_sys = p_out->p_sys->p_demux->p_sys;
449     es_format_t fmt;
450
451     es_format_Copy(&fmt, p_fmt);
452     switch (fmt.i_cat)
453     {
454     case VIDEO_ES:
455         if ( p_sys->i_video_stream != -1 && p_sys->i_video_stream != p_fmt->i_id )
456             fmt.i_priority = -2;
457         break ;
458     case AUDIO_ES:
459         if ( p_sys->i_audio_stream != -1 && p_sys->i_audio_stream != p_fmt->i_id )
460             fmt.i_priority = -2;
461         break ;
462     case SPU_ES:
463         break ;
464     }
465
466     es_out_id_t *p_es = es_out_Add( p_out->p_sys->p_demux->out, &fmt );
467     if ( p_fmt->i_id >= 0 ) {
468         /* Ensure we are not overriding anything */
469         int idx = findEsPairIndex(p_sys, p_fmt->i_id);
470         if ( idx == -1 ) {
471             fmt_es_pair_t *p_pair = malloc( sizeof(*p_pair) );
472             if ( likely(p_pair != NULL) ) {
473                 p_pair->i_id = p_fmt->i_id;
474                 p_pair->p_es = p_es;
475                 msg_Info( p_out->p_sys->p_demux, "Adding ES %d", p_fmt->i_id );
476                 vlc_array_append(&p_sys->es, p_pair);
477             }
478         }
479     }
480     es_format_Clean(&fmt);
481     return p_es;
482 }
483
484 static int esOutSend( es_out_t *p_out, es_out_id_t *p_es, block_t *p_block )
485 {
486     return es_out_Send( p_out->p_sys->p_demux->out, p_es, p_block );
487 }
488
489 static void esOutDel( es_out_t *p_out, es_out_id_t *p_es )
490 {
491     int idx = findEsPairIndexByEs( p_out->p_sys->p_demux->p_sys, p_es );
492     if (idx >= 0)
493     {
494         free( vlc_array_item_at_index( &p_out->p_sys->p_demux->p_sys->es, idx) );
495         vlc_array_remove(&p_out->p_sys->p_demux->p_sys->es, idx);
496     }
497     es_out_Del( p_out->p_sys->p_demux->out, p_es );
498 }
499
500 static int esOutControl( es_out_t *p_out, int i_query, va_list args )
501 {
502     return es_out_vaControl( p_out->p_sys->p_demux->out, i_query, args );
503 }
504
505 static void esOutDestroy( es_out_t *p_out )
506 {
507     for ( int i = 0; i < vlc_array_count(&p_out->p_sys->p_demux->p_sys->es); ++i )
508         free( vlc_array_item_at_index(&p_out->p_sys->p_demux->p_sys->es, i) );
509     vlc_array_clear(&p_out->p_sys->p_demux->p_sys->es);
510     free( p_out->p_sys );
511     free( p_out );
512 }
513
514 static es_out_t *esOutNew( demux_t *p_demux )
515 {
516     assert( vlc_array_count(&p_demux->p_sys->es) == 0 );
517     es_out_t    *p_out = malloc( sizeof(*p_out) );
518     if ( unlikely(p_out == NULL) )
519         return NULL;
520
521     p_out->pf_add       = &esOutAdd;
522     p_out->pf_control   = &esOutControl;
523     p_out->pf_del       = &esOutDel;
524     p_out->pf_destroy   = &esOutDestroy;
525     p_out->pf_send      = &esOutSend;
526
527     p_out->p_sys = malloc( sizeof(*p_out->p_sys) );
528     if ( unlikely( p_out->p_sys == NULL ) ) {
529         free( p_out );
530         return NULL;
531     }
532     p_out->p_sys->p_demux = p_demux;
533     return p_out;
534 }
535
536 /*****************************************************************************
537  * subpicture_updater_t functions:
538  *****************************************************************************/
539 static int subpictureUpdaterValidate( subpicture_t *p_subpic,
540                                       bool b_fmt_src, const video_format_t *p_fmt_src,
541                                       bool b_fmt_dst, const video_format_t *p_fmt_dst,
542                                       mtime_t i_ts )
543 {
544     VLC_UNUSED( b_fmt_src );
545     VLC_UNUSED( b_fmt_dst );
546     VLC_UNUSED( p_fmt_src );
547     VLC_UNUSED( p_fmt_dst );
548     VLC_UNUSED( i_ts );
549
550     subpicture_updater_sys_t *p_upd_sys = p_subpic->updater.p_sys;
551     bluray_overlay_t         *p_overlay = p_upd_sys->p_overlay;
552
553     vlc_mutex_lock(&p_overlay->lock);
554     int res = p_overlay->status == Outdated;
555     vlc_mutex_unlock(&p_overlay->lock);
556     return res;
557 }
558
559 /* This should probably be moved to subpictures.c afterward */
560 static subpicture_region_t* subpicture_region_Clone(subpicture_region_t *p_region_src)
561 {
562     if (!p_region_src)
563         return NULL;
564     subpicture_region_t *p_region_dst = subpicture_region_New(&p_region_src->fmt);
565     if (unlikely(!p_region_dst))
566         return NULL;
567
568     p_region_dst->i_x      = p_region_src->i_x;
569     p_region_dst->i_y      = p_region_src->i_y;
570     p_region_dst->i_align  = p_region_src->i_align;
571     p_region_dst->i_alpha  = p_region_src->i_alpha;
572
573     p_region_dst->psz_text = p_region_src->psz_text ? strdup(p_region_src->psz_text) : NULL;
574     p_region_dst->psz_html = p_region_src->psz_html ? strdup(p_region_src->psz_html) : NULL;
575     if (p_region_src->p_style != NULL) {
576         p_region_dst->p_style = malloc(sizeof(*p_region_dst->p_style));
577         p_region_dst->p_style = text_style_Copy(p_region_dst->p_style,
578                                                 p_region_src->p_style);
579     }
580
581     //Palette is already copied by subpicture_region_New, we just have to duplicate p_pixels
582     for (int i = 0; i < p_region_src->p_picture->i_planes; i++)
583         memcpy(p_region_dst->p_picture->p[i].p_pixels,
584                p_region_src->p_picture->p[i].p_pixels,
585                p_region_src->p_picture->p[i].i_lines * p_region_src->p_picture->p[i].i_pitch);
586     return p_region_dst;
587 }
588
589 static void subpictureUpdaterUpdate(subpicture_t *p_subpic,
590                                     const video_format_t *p_fmt_src,
591                                     const video_format_t *p_fmt_dst,
592                                     mtime_t i_ts)
593 {
594     VLC_UNUSED(p_fmt_src);
595     VLC_UNUSED(p_fmt_dst);
596     VLC_UNUSED(i_ts);
597     subpicture_updater_sys_t *p_upd_sys = p_subpic->updater.p_sys;
598     bluray_overlay_t         *p_overlay = p_upd_sys->p_overlay;
599
600     /*
601      * When this function is called, all p_subpic regions are gone.
602      * We need to duplicate our regions (stored internaly) to this subpic.
603      */
604     vlc_mutex_lock(&p_overlay->lock);
605
606     subpicture_region_t *p_src = p_overlay->p_regions;
607     if (!p_src)
608     {
609         vlc_mutex_unlock(&p_overlay->lock);
610         return;
611     }
612
613     subpicture_region_t **p_dst = &(p_subpic->p_region);
614     while (p_src != NULL) {
615         *p_dst = subpicture_region_Clone(p_src);
616         if (*p_dst == NULL)
617             break;
618         p_dst = &((*p_dst)->p_next);
619         p_src = p_src->p_next;
620     }
621     if (*p_dst != NULL)
622         (*p_dst)->p_next = NULL;
623     p_overlay->status = Displayed;
624     vlc_mutex_unlock(&p_overlay->lock);
625 }
626
627 static void blurayCleanOverlayStruct(bluray_overlay_t *);
628
629 static void subpictureUpdaterDestroy(subpicture_t *p_subpic)
630 {
631     blurayCleanOverlayStruct(p_subpic->updater.p_sys->p_overlay);
632 }
633
634 /*****************************************************************************
635  * User input events:
636  *****************************************************************************/
637 static int onMouseEvent(vlc_object_t *p_vout, const char *psz_var, vlc_value_t old,
638                         vlc_value_t val, void *p_data)
639 {
640     demux_t     *p_demux = (demux_t*)p_data;
641     demux_sys_t *p_sys   = p_demux->p_sys;
642     mtime_t     now      = mdate();
643     VLC_UNUSED(old);
644     VLC_UNUSED(p_vout);
645
646     if (psz_var[6] == 'm')   //Mouse moved
647         bd_mouse_select(p_sys->bluray, now, val.coords.x, val.coords.y);
648     else if (psz_var[6] == 'c') {
649         bd_mouse_select(p_sys->bluray, now, val.coords.x, val.coords.y);
650         bd_user_input(p_sys->bluray, now, BD_VK_MOUSE_ACTIVATE);
651     } else {
652         assert(0);
653     }
654     return VLC_SUCCESS;
655 }
656
657 static int sendKeyEvent(demux_sys_t *p_sys, unsigned int key)
658 {
659     mtime_t now = mdate();
660     if (bd_user_input(p_sys->bluray, now, key) < 0) {
661         return VLC_EGENERIC;
662     }
663     return VLC_SUCCESS;
664 }
665
666 /*****************************************************************************
667  * libbluray overlay handling:
668  *****************************************************************************/
669 static void blurayCleanOverlayStruct(bluray_overlay_t *p_overlay)
670 {
671     if (!atomic_flag_test_and_set(&p_overlay->released_once))
672         return;
673     /*
674      * This will be called when destroying the picture.
675      * Don't delete it again from here!
676      */
677     vlc_mutex_destroy(&p_overlay->lock);
678     subpicture_region_Delete(p_overlay->p_regions);
679     free(p_overlay);
680 }
681
682 static void blurayCloseAllOverlays(demux_t *p_demux)
683 {
684     demux_sys_t *p_sys = p_demux->p_sys;
685
686     p_demux->p_sys->current_overlay = -1;
687     if (p_sys->p_vout != NULL) {
688         for (int i = 0; i < 0; i++) {
689             if (p_sys->p_overlays[i] != NULL) {
690                 vout_FlushSubpictureChannel(p_sys->p_vout,
691                                             p_sys->p_overlays[i]->p_pic->i_channel);
692                 blurayCleanOverlayStruct(p_sys->p_overlays[i]);
693                 p_sys->p_overlays[i] = NULL;
694             }
695         }
696         var_DelCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
697         var_DelCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
698         vlc_object_release(p_sys->p_vout);
699         p_sys->p_vout = NULL;
700     }
701 }
702
703 /*
704  * Mark the overlay as "ToDisplay" status.
705  * This will not send the overlay to the vout instantly, as the vout
706  * may not be acquired (not acquirable) yet.
707  * If is has already been acquired, the overlay has already been sent to it,
708  * therefore, we only flag the overlay as "Outdated"
709  */
710 static void blurayActivateOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
711 {
712     demux_sys_t *p_sys = p_demux->p_sys;
713
714     /*
715      * If the overlay is already displayed, mark the picture as outdated.
716      * We must NOT use vout_PutSubpicture if a picture is already displayed.
717      */
718     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
719     if ((p_sys->p_overlays[ov->plane]->status == Displayed ||
720             p_sys->p_overlays[ov->plane]->status == Outdated)
721             && p_sys->p_vout) {
722         p_sys->p_overlays[ov->plane]->status = Outdated;
723         vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
724         return;
725     }
726     /*
727      * Mark the overlay as available, but don't display it right now.
728      * the blurayDemuxMenu will send it to vout, as it may be unavailable when
729      * the overlay is computed
730      */
731     p_sys->current_overlay = ov->plane;
732     p_sys->p_overlays[ov->plane]->status = ToDisplay;
733     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
734 }
735
736 static void blurayInitOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
737 {
738     demux_sys_t *p_sys = p_demux->p_sys;
739
740     assert(p_sys->p_overlays[ov->plane] == NULL);
741
742     p_sys->p_overlays[ov->plane] = calloc(1, sizeof(**p_sys->p_overlays));
743     if (unlikely(!p_sys->p_overlays[ov->plane]))
744         return;
745
746     subpicture_updater_sys_t *p_upd_sys = malloc(sizeof(*p_upd_sys));
747     if (unlikely(!p_upd_sys)) {
748         free(p_sys->p_overlays[ov->plane]);
749         p_sys->p_overlays[ov->plane] = NULL;
750         return;
751     }
752     /* two references: vout + demux */
753     p_sys->p_overlays[ov->plane]->released_once = ATOMIC_FLAG_INIT;
754
755     p_upd_sys->p_overlay = p_sys->p_overlays[ov->plane];
756     subpicture_updater_t updater = {
757         .pf_validate = subpictureUpdaterValidate,
758         .pf_update   = subpictureUpdaterUpdate,
759         .pf_destroy  = subpictureUpdaterDestroy,
760         .p_sys       = p_upd_sys,
761     };
762     vlc_mutex_init(&p_sys->p_overlays[ov->plane]->lock);
763     p_sys->p_overlays[ov->plane]->p_pic = subpicture_New(&updater);
764     p_sys->p_overlays[ov->plane]->p_pic->i_original_picture_width = ov->w;
765     p_sys->p_overlays[ov->plane]->p_pic->i_original_picture_height = ov->h;
766     p_sys->p_overlays[ov->plane]->p_pic->b_ephemer = true;
767     p_sys->p_overlays[ov->plane]->p_pic->b_absolute = true;
768 }
769
770 /**
771  * Destroy every regions in the subpicture.
772  * This is done in two steps:
773  * - Wiping our private regions list
774  * - Flagging the overlay as outdated, so the changes are replicated from
775  *   the subpicture_updater_t::pf_update
776  * This doesn't destroy the subpicture, as the overlay may be used again by libbluray.
777  */
778 static void blurayClearOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
779 {
780     demux_sys_t *p_sys = p_demux->p_sys;
781
782     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
783
784     subpicture_region_ChainDelete(p_sys->p_overlays[ov->plane]->p_regions);
785     p_sys->p_overlays[ov->plane]->p_regions = NULL;
786     p_sys->p_overlays[ov->plane]->status = Outdated;
787     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
788 }
789
790 /*
791  * This will draw to the overlay by adding a region to our region list
792  * This will have to be copied to the subpicture used to render the overlay.
793  */
794 static void blurayDrawOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
795 {
796     demux_sys_t *p_sys = p_demux->p_sys;
797
798     /*
799      * Compute a subpicture_region_t.
800      * It will be copied and sent to the vout later.
801      */
802     if (!ov->img)
803         return;
804
805     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
806
807     /* Find a region to update */
808     subpicture_region_t *p_reg = p_sys->p_overlays[ov->plane]->p_regions;
809     subpicture_region_t *p_last = NULL;
810     while (p_reg != NULL) {
811         p_last = p_reg;
812         if (p_reg->i_x == ov->x && p_reg->i_y == ov->y &&
813                 p_reg->fmt.i_width == ov->w && p_reg->fmt.i_height == ov->h)
814             break;
815         p_reg = p_reg->p_next;
816     }
817
818     /* If there is no region to update, create a new one. */
819     if (!p_reg) {
820         video_format_t fmt;
821         video_format_Init(&fmt, 0);
822         video_format_Setup(&fmt, VLC_CODEC_YUVP, ov->w, ov->h, 1, 1);
823
824         p_reg = subpicture_region_New(&fmt);
825         p_reg->i_x = ov->x;
826         p_reg->i_y = ov->y;
827         /* Append it to our list. */
828         if (p_last != NULL)
829             p_last->p_next = p_reg;
830         else /* If we don't have a last region, then our list empty */
831             p_sys->p_overlays[ov->plane]->p_regions = p_reg;
832     }
833
834     /* Now we can update the region, regardless it's an update or an insert */
835     const BD_PG_RLE_ELEM *img = ov->img;
836     for (int y = 0; y < ov->h; y++) {
837         for (int x = 0; x < ov->w;) {
838             memset(p_reg->p_picture->p[0].p_pixels +
839                    y * p_reg->p_picture->p[0].i_pitch + x,
840                    img->color, img->len);
841             x += img->len;
842             img++;
843         }
844     }
845     if (ov->palette) {
846         p_reg->fmt.p_palette->i_entries = 256;
847         for (int i = 0; i < 256; ++i) {
848             p_reg->fmt.p_palette->palette[i][0] = ov->palette[i].Y;
849             p_reg->fmt.p_palette->palette[i][1] = ov->palette[i].Cb;
850             p_reg->fmt.p_palette->palette[i][2] = ov->palette[i].Cr;
851             p_reg->fmt.p_palette->palette[i][3] = ov->palette[i].T;
852         }
853     }
854     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
855     /*
856      * /!\ The region is now stored in our internal list, but not in the subpicture /!\
857      */
858 }
859
860 static void blurayOverlayProc(void *ptr, const BD_OVERLAY *const overlay)
861 {
862     demux_t *p_demux = (demux_t*)ptr;
863
864     if (!overlay) {
865         msg_Info(p_demux, "Closing overlay.");
866         blurayCloseAllOverlays(p_demux);
867         return;
868     }
869     switch (overlay->cmd) {
870         case BD_OVERLAY_INIT:
871             msg_Info(p_demux, "Initializing overlay");
872             blurayInitOverlay(p_demux, overlay);
873             break;
874         case BD_OVERLAY_CLEAR:
875             blurayClearOverlay(p_demux, overlay);
876             break;
877         case BD_OVERLAY_FLUSH:
878             blurayActivateOverlay(p_demux, overlay);
879             break;
880         case BD_OVERLAY_DRAW:
881             blurayDrawOverlay(p_demux, overlay);
882             break;
883         default:
884             msg_Warn(p_demux, "Unknown BD overlay command: %u", overlay->cmd);
885             break;
886     }
887 }
888
889 static void bluraySendOverlayToVout(demux_t *p_demux)
890 {
891     demux_sys_t *p_sys = p_demux->p_sys;
892
893     assert(p_sys->current_overlay >= 0 &&
894            p_sys->p_overlays[p_sys->current_overlay] != NULL &&
895            p_sys->p_overlays[p_sys->current_overlay]->p_pic != NULL);
896
897     p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_start =
898         p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_stop = mdate();
899     p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_channel =
900         vout_RegisterSubpictureChannel(p_sys->p_vout);
901     /*
902      * After this point, the picture should not be accessed from the demux thread,
903      * as it is held by the vout thread.
904      * This must be done only once per subpicture, ie. only once between each
905      * blurayInitOverlay & blurayCloseOverlay call.
906      */
907     vout_PutSubpicture(p_sys->p_vout, p_sys->p_overlays[p_sys->current_overlay]->p_pic);
908     /*
909      * Mark the picture as Outdated, as it contains no region for now.
910      * This will make the subpicture_updater_t call pf_update
911      */
912     p_sys->p_overlays[p_sys->current_overlay]->status = Outdated;
913 }
914
915 static int blurayInitTitles(demux_t *p_demux )
916 {
917     demux_sys_t *p_sys = p_demux->p_sys;
918
919     /* get and set the titles */
920     unsigned i_title = bd_get_titles(p_sys->bluray, TITLES_RELEVANT, 60);
921     int64_t duration = 0;
922
923     for (unsigned int i = 0; i < i_title; i++) {
924         input_title_t *t = vlc_input_title_New();
925         if (!t)
926             break;
927
928         BLURAY_TITLE_INFO *title_info = bd_get_title_info(p_sys->bluray, i, 0);
929         if (!title_info)
930             break;
931         t->i_length = FROM_TICKS(title_info->duration);
932
933         if (t->i_length > duration) {
934             duration = t->i_length;
935             p_sys->i_longest_title = i;
936         }
937
938         for ( unsigned int j = 0; j < title_info->chapter_count; j++) {
939             seekpoint_t *s = vlc_seekpoint_New();
940             if (!s)
941                 break;
942             s->i_time_offset = title_info->chapters[j].offset;
943
944             TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
945         }
946         TAB_APPEND( p_sys->i_title, p_sys->pp_title, t );
947         bd_free_title_info(title_info);
948     }
949     return VLC_SUCCESS;
950 }
951
952 static void blurayResetParser( demux_t *p_demux )
953 {
954     /*
955      * This is a hack and will have to be removed.
956      * The parser should be flushed, and not destroy/created each time
957      * we are changing title.
958      */
959     demux_sys_t *p_sys = p_demux->p_sys;
960     if (p_sys->p_parser)
961         stream_Delete(p_sys->p_parser);
962     p_sys->p_parser = stream_DemuxNew(p_demux, "ts", p_sys->p_out);
963     if (!p_sys->p_parser) {
964         msg_Err(p_demux, "Failed to create TS demuxer");
965     }
966 }
967
968 static void blurayUpdateTitle(demux_t *p_demux, unsigned i_title)
969 {
970     blurayResetParser(p_demux);
971     if (i_title >= p_demux->p_sys->i_title)
972         return;
973
974     /* read title info and init some values */
975     p_demux->info.i_title = i_title;
976     p_demux->info.i_seekpoint = 0;
977     p_demux->info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
978 }
979
980 /*****************************************************************************
981  * bluraySetTitle: select new BD title
982  *****************************************************************************/
983 static int bluraySetTitle(demux_t *p_demux, int i_title)
984 {
985     demux_sys_t *p_sys = p_demux->p_sys;
986
987     /* Looking for the main title, ie the longest duration */
988     if (i_title < 0)
989         i_title = p_sys->i_longest_title;
990     else if ((unsigned)i_title > p_sys->i_title)
991         return VLC_EGENERIC;
992
993     msg_Dbg( p_demux, "Selecting Title %i", i_title);
994
995     /* Select Blu-Ray title */
996     if (bd_select_title(p_demux->p_sys->bluray, i_title) == 0 ) {
997         msg_Err(p_demux, "cannot select bd title '%d'", p_demux->info.i_title);
998         return VLC_EGENERIC;
999     }
1000     blurayUpdateTitle( p_demux, i_title );
1001
1002     return VLC_SUCCESS;
1003 }
1004
1005
1006 /*****************************************************************************
1007  * blurayControl: handle the controls
1008  *****************************************************************************/
1009 static int blurayControl(demux_t *p_demux, int query, va_list args)
1010 {
1011     demux_sys_t *p_sys = p_demux->p_sys;
1012     bool     *pb_bool;
1013     int64_t  *pi_64;
1014
1015     switch (query) {
1016         case DEMUX_CAN_SEEK:
1017         case DEMUX_CAN_PAUSE:
1018         case DEMUX_CAN_CONTROL_PACE:
1019              pb_bool = (bool*)va_arg( args, bool * );
1020              *pb_bool = true;
1021              break;
1022
1023         case DEMUX_GET_PTS_DELAY:
1024             pi_64 = (int64_t*)va_arg( args, int64_t * );
1025             *pi_64 =
1026                 INT64_C(1000) * var_InheritInteger( p_demux, "disc-caching" );
1027             break;
1028
1029         case DEMUX_SET_PAUSE_STATE:
1030             /* Nothing to do */
1031             break;
1032
1033         case DEMUX_SET_TITLE:
1034         {
1035             int i_title = (int)va_arg( args, int );
1036             if (bluraySetTitle(p_demux, i_title) != VLC_SUCCESS)
1037                 return VLC_EGENERIC;
1038             break;
1039         }
1040         case DEMUX_SET_SEEKPOINT:
1041         {
1042             int i_chapter = (int)va_arg( args, int );
1043             bd_seek_chapter( p_sys->bluray, i_chapter );
1044             p_demux->info.i_update = INPUT_UPDATE_SEEKPOINT;
1045             break;
1046         }
1047
1048         case DEMUX_GET_TITLE_INFO:
1049         {
1050             input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
1051             int *pi_int             = (int*)va_arg( args, int* );
1052             int *pi_title_offset    = (int*)va_arg( args, int* );
1053             int *pi_chapter_offset  = (int*)va_arg( args, int* );
1054
1055             /* */
1056             *pi_title_offset   = 0;
1057             *pi_chapter_offset = 0;
1058
1059             /* Duplicate local title infos */
1060             *pi_int = p_sys->i_title;
1061             *ppp_title = calloc( p_sys->i_title, sizeof(input_title_t **) );
1062             for( unsigned int i = 0; i < p_sys->i_title; i++ )
1063                 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->pp_title[i]);
1064
1065             return VLC_SUCCESS;
1066         }
1067
1068         case DEMUX_GET_LENGTH:
1069         {
1070             int64_t *pi_length = (int64_t*)va_arg(args, int64_t *);
1071             *pi_length = p_demux->info.i_title < (int)p_sys->i_title ? CUR_LENGTH : 0;
1072             return VLC_SUCCESS;
1073         }
1074         case DEMUX_SET_TIME:
1075         {
1076             int64_t i_time = (int64_t)va_arg(args, int64_t);
1077             bd_seek_time(p_sys->bluray, TO_TICKS(i_time));
1078             return VLC_SUCCESS;
1079         }
1080         case DEMUX_GET_TIME:
1081         {
1082             int64_t *pi_time = (int64_t*)va_arg(args, int64_t *);
1083             *pi_time = (int64_t)FROM_TICKS(bd_tell_time(p_sys->bluray));
1084             return VLC_SUCCESS;
1085         }
1086
1087         case DEMUX_GET_POSITION:
1088         {
1089             double *pf_position = (double*)va_arg( args, double * );
1090             *pf_position = p_demux->info.i_title < (int)p_sys->i_title ?
1091                         (double)FROM_TICKS(bd_tell_time(p_sys->bluray))/CUR_LENGTH : 0.0;
1092             return VLC_SUCCESS;
1093         }
1094         case DEMUX_SET_POSITION:
1095         {
1096             double f_position = (double)va_arg(args, double);
1097             bd_seek_time(p_sys->bluray, TO_TICKS(f_position*CUR_LENGTH));
1098             return VLC_SUCCESS;
1099         }
1100
1101         case DEMUX_GET_META:
1102         {
1103             vlc_meta_t *p_meta = (vlc_meta_t *) va_arg (args, vlc_meta_t*);
1104             const META_DL *meta = p_sys->p_meta;
1105             if (meta == NULL)
1106                 return VLC_EGENERIC;
1107
1108             if (!EMPTY_STR(meta->di_name)) vlc_meta_SetTitle(p_meta, meta->di_name);
1109
1110             if (!EMPTY_STR(meta->language_code)) vlc_meta_AddExtra(p_meta, "Language", meta->language_code);
1111             if (!EMPTY_STR(meta->filename)) vlc_meta_AddExtra(p_meta, "Filename", meta->filename);
1112             if (!EMPTY_STR(meta->di_alternative)) vlc_meta_AddExtra(p_meta, "Alternative", meta->di_alternative);
1113
1114             // if (meta->di_set_number > 0) vlc_meta_SetTrackNum(p_meta, meta->di_set_number);
1115             // if (meta->di_num_sets > 0) vlc_meta_AddExtra(p_meta, "Discs numbers in Set", meta->di_num_sets);
1116
1117             if (meta->thumb_count > 0 && meta->thumbnails)
1118             {
1119                 char *psz_thumbpath;
1120                 if( asprintf( &psz_thumbpath, "%s" DIR_SEP "BDMV" DIR_SEP "META" DIR_SEP "DL" DIR_SEP "%s",
1121                               p_sys->psz_bd_path, meta->thumbnails[0].path ) > 0 )
1122                 {
1123                     char *psz_thumburl = vlc_path2uri( psz_thumbpath, "file" );
1124                     if( unlikely(psz_thumburl == NULL) )
1125                         return VLC_ENOMEM;
1126
1127                     vlc_meta_SetArtURL( p_meta, psz_thumburl );
1128                     free( psz_thumburl );
1129                 }
1130                 free( psz_thumbpath );
1131             }
1132
1133             return VLC_SUCCESS;
1134         }
1135
1136         case DEMUX_NAV_ACTIVATE:
1137             return sendKeyEvent(p_sys, BD_VK_ENTER);
1138         case DEMUX_NAV_UP:
1139             return sendKeyEvent(p_sys, BD_VK_UP);
1140         case DEMUX_NAV_DOWN:
1141             return sendKeyEvent(p_sys, BD_VK_DOWN);
1142         case DEMUX_NAV_LEFT:
1143             return sendKeyEvent(p_sys, BD_VK_LEFT);
1144         case DEMUX_NAV_RIGHT:
1145             return sendKeyEvent(p_sys, BD_VK_RIGHT);
1146
1147         case DEMUX_CAN_RECORD:
1148         case DEMUX_GET_FPS:
1149         case DEMUX_SET_GROUP:
1150         case DEMUX_HAS_UNSUPPORTED_META:
1151         case DEMUX_GET_ATTACHMENTS:
1152             return VLC_EGENERIC;
1153         default:
1154             msg_Warn( p_demux, "unimplemented query (%d) in control", query );
1155             return VLC_EGENERIC;
1156     }
1157     return VLC_SUCCESS;
1158 }
1159
1160 static void     blurayUpdateCurrentClip( demux_t *p_demux, uint32_t clip )
1161 {
1162     if (clip == 0xFF)
1163         return ;
1164     demux_sys_t *p_sys = p_demux->p_sys;
1165
1166     p_sys->i_current_clip = clip;
1167     BLURAY_TITLE_INFO   *info = bd_get_title_info(p_sys->bluray,
1168                                         bd_get_current_title(p_sys->bluray), 0);
1169     if ( info == NULL )
1170         return ;
1171     /* Let's assume a single video track for now.
1172      * This may brake later, but it's enough for now.
1173      */
1174     assert(info->clips[p_sys->i_current_clip].video_stream_count >= 1);
1175     p_sys->i_video_stream = info->clips[p_sys->i_current_clip].video_streams[0].pid;
1176     bd_free_title_info(info);
1177 }
1178
1179 static void blurayHandleEvent( demux_t *p_demux, const BD_EVENT *e )
1180 {
1181     demux_sys_t     *p_sys = p_demux->p_sys;
1182
1183     switch (e->event)
1184     {
1185         case BD_EVENT_TITLE:
1186             blurayUpdateTitle(p_demux, e->param);
1187             break;
1188         case BD_EVENT_PLAYITEM:
1189             blurayUpdateCurrentClip(p_demux, e->param);
1190             break;
1191         case BD_EVENT_AUDIO_STREAM:
1192         {
1193             if ( e->param == 0xFF )
1194                 break ;
1195             BLURAY_TITLE_INFO   *info = bd_get_title_info(p_sys->bluray,
1196                                        bd_get_current_title(p_sys->bluray), 0);
1197             if ( info == NULL )
1198                 break ;
1199             /* The param we get is the real stream id, not an index, ie. it starts from 1 */
1200             int pid = info->clips[p_sys->i_current_clip].audio_streams[e->param - 1].pid;
1201             int idx = findEsPairIndex( p_sys, pid );
1202             if ( idx >= 0 ) {
1203                 es_out_id_t *p_es = vlc_array_item_at_index(&p_sys->es, idx);
1204                 es_out_Control( p_demux->out, ES_OUT_SET_ES, p_es );
1205             }
1206             bd_free_title_info( info );
1207             p_sys->i_audio_stream = pid;
1208             break ;
1209         }
1210         case BD_EVENT_CHAPTER:
1211             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
1212             p_demux->info.i_seekpoint = e->param;
1213             break;
1214         case BD_EVENT_ANGLE:
1215         case BD_EVENT_IG_STREAM:
1216         default:
1217             msg_Warn( p_demux, "event: %d param: %d", e->event, e->param );
1218             break;
1219     }
1220 }
1221
1222 static void blurayHandleEvents( demux_t *p_demux )
1223 {
1224     BD_EVENT e;
1225
1226     while (bd_get_event(p_demux->p_sys->bluray, &e))
1227     {
1228         blurayHandleEvent(p_demux, &e);
1229     }
1230 }
1231
1232 #define BD_TS_PACKET_SIZE (192)
1233 #define NB_TS_PACKETS (200)
1234
1235 static int blurayDemux(demux_t *p_demux)
1236 {
1237     demux_sys_t *p_sys = p_demux->p_sys;
1238
1239     block_t *p_block = block_Alloc(NB_TS_PACKETS * (int64_t)BD_TS_PACKET_SIZE);
1240     if (!p_block) {
1241         return -1;
1242     }
1243
1244     int nread = -1;
1245     if (p_sys->b_menu == false) {
1246         blurayHandleEvents(p_demux);
1247         nread = bd_read(p_sys->bluray, p_block->p_buffer,
1248                         NB_TS_PACKETS * BD_TS_PACKET_SIZE);
1249         if (nread < 0) {
1250             block_Release(p_block);
1251             return nread;
1252         }
1253     } else {
1254         BD_EVENT e;
1255         nread = bd_read_ext(p_sys->bluray, p_block->p_buffer,
1256                             NB_TS_PACKETS * BD_TS_PACKET_SIZE, &e);
1257         if (nread < 0)
1258         {
1259             block_Release(p_block);
1260             return -1;
1261         }
1262         if (nread == 0) {
1263             if (e.event == BD_EVENT_NONE)
1264                 msg_Info(p_demux, "We reached the end of a title");
1265             else
1266                 blurayHandleEvent(p_demux, &e);
1267             block_Release(p_block);
1268             return 1;
1269         }
1270         if (p_sys->current_overlay != -1) {
1271             vlc_mutex_lock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1272             if (p_sys->p_overlays[p_sys->current_overlay]->status == ToDisplay) {
1273                 vlc_mutex_unlock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1274                 if (p_sys->p_vout == NULL)
1275                     p_sys->p_vout = input_GetVout(p_sys->p_input);
1276                 if (p_sys->p_vout != NULL) {
1277                     var_AddCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
1278                     var_AddCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
1279                     bluraySendOverlayToVout(p_demux);
1280                 }
1281             } else
1282                 vlc_mutex_unlock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1283         }
1284     }
1285
1286     p_block->i_buffer = nread;
1287
1288     stream_DemuxSend(p_sys->p_parser, p_block);
1289
1290     return 1;
1291 }