]> git.sesse.net Git - vlc/blob - modules/access/bluray.c
c1f25b3dbb4e5d62b4b9e17d2c198242502657d6
[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 /*****************************************************************************
658  * libbluray overlay handling:
659  *****************************************************************************/
660 static void blurayCleanOverlayStruct(bluray_overlay_t *p_overlay)
661 {
662     if (!atomic_flag_test_and_set(&p_overlay->released_once))
663         return;
664     /*
665      * This will be called when destroying the picture.
666      * Don't delete it again from here!
667      */
668     vlc_mutex_destroy(&p_overlay->lock);
669     subpicture_region_Delete(p_overlay->p_regions);
670     free(p_overlay);
671 }
672
673 static void blurayCloseAllOverlays(demux_t *p_demux)
674 {
675     demux_sys_t *p_sys = p_demux->p_sys;
676
677     p_demux->p_sys->current_overlay = -1;
678     if (p_sys->p_vout != NULL) {
679         for (int i = 0; i < 0; i++) {
680             if (p_sys->p_overlays[i] != NULL) {
681                 vout_FlushSubpictureChannel(p_sys->p_vout,
682                                             p_sys->p_overlays[i]->p_pic->i_channel);
683                 blurayCleanOverlayStruct(p_sys->p_overlays[i]);
684                 p_sys->p_overlays[i] = NULL;
685             }
686         }
687         var_DelCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
688         var_DelCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
689         vlc_object_release(p_sys->p_vout);
690         p_sys->p_vout = NULL;
691     }
692 }
693
694 /*
695  * Mark the overlay as "ToDisplay" status.
696  * This will not send the overlay to the vout instantly, as the vout
697  * may not be acquired (not acquirable) yet.
698  * If is has already been acquired, the overlay has already been sent to it,
699  * therefore, we only flag the overlay as "Outdated"
700  */
701 static void blurayActivateOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
702 {
703     demux_sys_t *p_sys = p_demux->p_sys;
704
705     /*
706      * If the overlay is already displayed, mark the picture as outdated.
707      * We must NOT use vout_PutSubpicture if a picture is already displayed.
708      */
709     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
710     if ((p_sys->p_overlays[ov->plane]->status == Displayed ||
711             p_sys->p_overlays[ov->plane]->status == Outdated)
712             && p_sys->p_vout) {
713         p_sys->p_overlays[ov->plane]->status = Outdated;
714         vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
715         return;
716     }
717     /*
718      * Mark the overlay as available, but don't display it right now.
719      * the blurayDemuxMenu will send it to vout, as it may be unavailable when
720      * the overlay is computed
721      */
722     p_sys->current_overlay = ov->plane;
723     p_sys->p_overlays[ov->plane]->status = ToDisplay;
724     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
725 }
726
727 static void blurayInitOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
728 {
729     demux_sys_t *p_sys = p_demux->p_sys;
730
731     assert(p_sys->p_overlays[ov->plane] == NULL);
732
733     p_sys->p_overlays[ov->plane] = calloc(1, sizeof(**p_sys->p_overlays));
734     if (unlikely(!p_sys->p_overlays[ov->plane]))
735         return;
736
737     subpicture_updater_sys_t *p_upd_sys = malloc(sizeof(*p_upd_sys));
738     if (unlikely(!p_upd_sys)) {
739         free(p_sys->p_overlays[ov->plane]);
740         p_sys->p_overlays[ov->plane] = NULL;
741         return;
742     }
743     /* two references: vout + demux */
744     p_sys->p_overlays[ov->plane]->released_once = ATOMIC_FLAG_INIT;
745
746     p_upd_sys->p_overlay = p_sys->p_overlays[ov->plane];
747     subpicture_updater_t updater = {
748         .pf_validate = subpictureUpdaterValidate,
749         .pf_update   = subpictureUpdaterUpdate,
750         .pf_destroy  = subpictureUpdaterDestroy,
751         .p_sys       = p_upd_sys,
752     };
753     vlc_mutex_init(&p_sys->p_overlays[ov->plane]->lock);
754     p_sys->p_overlays[ov->plane]->p_pic = subpicture_New(&updater);
755     p_sys->p_overlays[ov->plane]->p_pic->i_original_picture_width = ov->w;
756     p_sys->p_overlays[ov->plane]->p_pic->i_original_picture_height = ov->h;
757     p_sys->p_overlays[ov->plane]->p_pic->b_ephemer = true;
758     p_sys->p_overlays[ov->plane]->p_pic->b_absolute = true;
759 }
760
761 /**
762  * Destroy every regions in the subpicture.
763  * This is done in two steps:
764  * - Wiping our private regions list
765  * - Flagging the overlay as outdated, so the changes are replicated from
766  *   the subpicture_updater_t::pf_update
767  * This doesn't destroy the subpicture, as the overlay may be used again by libbluray.
768  */
769 static void blurayClearOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
770 {
771     demux_sys_t *p_sys = p_demux->p_sys;
772
773     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
774
775     subpicture_region_ChainDelete(p_sys->p_overlays[ov->plane]->p_regions);
776     p_sys->p_overlays[ov->plane]->p_regions = NULL;
777     p_sys->p_overlays[ov->plane]->status = Outdated;
778     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
779 }
780
781 /*
782  * This will draw to the overlay by adding a region to our region list
783  * This will have to be copied to the subpicture used to render the overlay.
784  */
785 static void blurayDrawOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
786 {
787     demux_sys_t *p_sys = p_demux->p_sys;
788
789     /*
790      * Compute a subpicture_region_t.
791      * It will be copied and sent to the vout later.
792      */
793     if (!ov->img)
794         return;
795
796     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
797
798     /* Find a region to update */
799     subpicture_region_t *p_reg = p_sys->p_overlays[ov->plane]->p_regions;
800     subpicture_region_t *p_last = NULL;
801     while (p_reg != NULL) {
802         p_last = p_reg;
803         if (p_reg->i_x == ov->x && p_reg->i_y == ov->y &&
804                 p_reg->fmt.i_width == ov->w && p_reg->fmt.i_height == ov->h)
805             break;
806         p_reg = p_reg->p_next;
807     }
808
809     /* If there is no region to update, create a new one. */
810     if (!p_reg) {
811         video_format_t fmt;
812         video_format_Init(&fmt, 0);
813         video_format_Setup(&fmt, VLC_CODEC_YUVP, ov->w, ov->h, 1, 1);
814
815         p_reg = subpicture_region_New(&fmt);
816         p_reg->i_x = ov->x;
817         p_reg->i_y = ov->y;
818         /* Append it to our list. */
819         if (p_last != NULL)
820             p_last->p_next = p_reg;
821         else /* If we don't have a last region, then our list empty */
822             p_sys->p_overlays[ov->plane]->p_regions = p_reg;
823     }
824
825     /* Now we can update the region, regardless it's an update or an insert */
826     const BD_PG_RLE_ELEM *img = ov->img;
827     for (int y = 0; y < ov->h; y++) {
828         for (int x = 0; x < ov->w;) {
829             memset(p_reg->p_picture->p[0].p_pixels +
830                    y * p_reg->p_picture->p[0].i_pitch + x,
831                    img->color, img->len);
832             x += img->len;
833             img++;
834         }
835     }
836     if (ov->palette) {
837         p_reg->fmt.p_palette->i_entries = 256;
838         for (int i = 0; i < 256; ++i) {
839             p_reg->fmt.p_palette->palette[i][0] = ov->palette[i].Y;
840             p_reg->fmt.p_palette->palette[i][1] = ov->palette[i].Cb;
841             p_reg->fmt.p_palette->palette[i][2] = ov->palette[i].Cr;
842             p_reg->fmt.p_palette->palette[i][3] = ov->palette[i].T;
843         }
844     }
845     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
846     /*
847      * /!\ The region is now stored in our internal list, but not in the subpicture /!\
848      */
849 }
850
851 static void blurayOverlayProc(void *ptr, const BD_OVERLAY *const overlay)
852 {
853     demux_t *p_demux = (demux_t*)ptr;
854
855     if (!overlay) {
856         msg_Info(p_demux, "Closing overlay.");
857         blurayCloseAllOverlays(p_demux);
858         return;
859     }
860     switch (overlay->cmd) {
861         case BD_OVERLAY_INIT:
862             msg_Info(p_demux, "Initializing overlay");
863             blurayInitOverlay(p_demux, overlay);
864             break;
865         case BD_OVERLAY_CLEAR:
866             blurayClearOverlay(p_demux, overlay);
867             break;
868         case BD_OVERLAY_FLUSH:
869             blurayActivateOverlay(p_demux, overlay);
870             break;
871         case BD_OVERLAY_DRAW:
872             blurayDrawOverlay(p_demux, overlay);
873             break;
874         default:
875             msg_Warn(p_demux, "Unknown BD overlay command: %u", overlay->cmd);
876             break;
877     }
878 }
879
880 static void bluraySendOverlayToVout(demux_t *p_demux)
881 {
882     demux_sys_t *p_sys = p_demux->p_sys;
883
884     assert(p_sys->current_overlay >= 0 &&
885            p_sys->p_overlays[p_sys->current_overlay] != NULL &&
886            p_sys->p_overlays[p_sys->current_overlay]->p_pic != NULL);
887
888     p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_start =
889         p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_stop = mdate();
890     p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_channel =
891         vout_RegisterSubpictureChannel(p_sys->p_vout);
892     /*
893      * After this point, the picture should not be accessed from the demux thread,
894      * as it is held by the vout thread.
895      * This must be done only once per subpicture, ie. only once between each
896      * blurayInitOverlay & blurayCloseOverlay call.
897      */
898     vout_PutSubpicture(p_sys->p_vout, p_sys->p_overlays[p_sys->current_overlay]->p_pic);
899     /*
900      * Mark the picture as Outdated, as it contains no region for now.
901      * This will make the subpicture_updater_t call pf_update
902      */
903     p_sys->p_overlays[p_sys->current_overlay]->status = Outdated;
904 }
905
906 static int blurayInitTitles(demux_t *p_demux )
907 {
908     demux_sys_t *p_sys = p_demux->p_sys;
909
910     /* get and set the titles */
911     unsigned i_title = bd_get_titles(p_sys->bluray, TITLES_RELEVANT, 60);
912     int64_t duration = 0;
913
914     for (unsigned int i = 0; i < i_title; i++) {
915         input_title_t *t = vlc_input_title_New();
916         if (!t)
917             break;
918
919         BLURAY_TITLE_INFO *title_info = bd_get_title_info(p_sys->bluray, i, 0);
920         if (!title_info)
921             break;
922         t->i_length = FROM_TICKS(title_info->duration);
923
924         if (t->i_length > duration) {
925             duration = t->i_length;
926             p_sys->i_longest_title = i;
927         }
928
929         for ( unsigned int j = 0; j < title_info->chapter_count; j++) {
930             seekpoint_t *s = vlc_seekpoint_New();
931             if (!s)
932                 break;
933             s->i_time_offset = title_info->chapters[j].offset;
934
935             TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
936         }
937         TAB_APPEND( p_sys->i_title, p_sys->pp_title, t );
938         bd_free_title_info(title_info);
939     }
940     return VLC_SUCCESS;
941 }
942
943 static void blurayResetParser( demux_t *p_demux )
944 {
945     /*
946      * This is a hack and will have to be removed.
947      * The parser should be flushed, and not destroy/created each time
948      * we are changing title.
949      */
950     demux_sys_t *p_sys = p_demux->p_sys;
951     if (p_sys->p_parser)
952         stream_Delete(p_sys->p_parser);
953     p_sys->p_parser = stream_DemuxNew(p_demux, "ts", p_sys->p_out);
954     if (!p_sys->p_parser) {
955         msg_Err(p_demux, "Failed to create TS demuxer");
956     }
957 }
958
959 static void blurayUpdateTitle(demux_t *p_demux, unsigned i_title)
960 {
961     blurayResetParser(p_demux);
962     if (i_title >= p_demux->p_sys->i_title)
963         return;
964
965     /* read title info and init some values */
966     p_demux->info.i_title = i_title;
967     p_demux->info.i_seekpoint = 0;
968     p_demux->info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
969 }
970
971 /*****************************************************************************
972  * bluraySetTitle: select new BD title
973  *****************************************************************************/
974 static int bluraySetTitle(demux_t *p_demux, int i_title)
975 {
976     demux_sys_t *p_sys = p_demux->p_sys;
977
978     /* Looking for the main title, ie the longest duration */
979     if (i_title < 0)
980         i_title = p_sys->i_longest_title;
981     else if ((unsigned)i_title > p_sys->i_title)
982         return VLC_EGENERIC;
983
984     msg_Dbg( p_demux, "Selecting Title %i", i_title);
985
986     /* Select Blu-Ray title */
987     if (bd_select_title(p_demux->p_sys->bluray, i_title) == 0 ) {
988         msg_Err(p_demux, "cannot select bd title '%d'", p_demux->info.i_title);
989         return VLC_EGENERIC;
990     }
991     blurayUpdateTitle( p_demux, i_title );
992
993     return VLC_SUCCESS;
994 }
995
996
997 /*****************************************************************************
998  * blurayControl: handle the controls
999  *****************************************************************************/
1000 static int blurayControl(demux_t *p_demux, int query, va_list args)
1001 {
1002     demux_sys_t *p_sys = p_demux->p_sys;
1003     bool     *pb_bool;
1004     int64_t  *pi_64;
1005
1006     switch (query) {
1007         case DEMUX_CAN_SEEK:
1008         case DEMUX_CAN_PAUSE:
1009         case DEMUX_CAN_CONTROL_PACE:
1010              pb_bool = (bool*)va_arg( args, bool * );
1011              *pb_bool = true;
1012              break;
1013
1014         case DEMUX_GET_PTS_DELAY:
1015             pi_64 = (int64_t*)va_arg( args, int64_t * );
1016             *pi_64 =
1017                 INT64_C(1000) * var_InheritInteger( p_demux, "disc-caching" );
1018             break;
1019
1020         case DEMUX_SET_PAUSE_STATE:
1021             /* Nothing to do */
1022             break;
1023
1024         case DEMUX_SET_TITLE:
1025         {
1026             int i_title = (int)va_arg( args, int );
1027             if (bluraySetTitle(p_demux, i_title) != VLC_SUCCESS)
1028                 return VLC_EGENERIC;
1029             break;
1030         }
1031         case DEMUX_SET_SEEKPOINT:
1032         {
1033             int i_chapter = (int)va_arg( args, int );
1034             bd_seek_chapter( p_sys->bluray, i_chapter );
1035             p_demux->info.i_update = INPUT_UPDATE_SEEKPOINT;
1036             break;
1037         }
1038
1039         case DEMUX_GET_TITLE_INFO:
1040         {
1041             input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
1042             int *pi_int             = (int*)va_arg( args, int* );
1043             int *pi_title_offset    = (int*)va_arg( args, int* );
1044             int *pi_chapter_offset  = (int*)va_arg( args, int* );
1045
1046             /* */
1047             *pi_title_offset   = 0;
1048             *pi_chapter_offset = 0;
1049
1050             /* Duplicate local title infos */
1051             *pi_int = p_sys->i_title;
1052             *ppp_title = calloc( p_sys->i_title, sizeof(input_title_t **) );
1053             for( unsigned int i = 0; i < p_sys->i_title; i++ )
1054                 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->pp_title[i]);
1055
1056             return VLC_SUCCESS;
1057         }
1058
1059         case DEMUX_GET_LENGTH:
1060         {
1061             int64_t *pi_length = (int64_t*)va_arg(args, int64_t *);
1062             *pi_length = p_demux->info.i_title < (int)p_sys->i_title ? CUR_LENGTH : 0;
1063             return VLC_SUCCESS;
1064         }
1065         case DEMUX_SET_TIME:
1066         {
1067             int64_t i_time = (int64_t)va_arg(args, int64_t);
1068             bd_seek_time(p_sys->bluray, TO_TICKS(i_time));
1069             return VLC_SUCCESS;
1070         }
1071         case DEMUX_GET_TIME:
1072         {
1073             int64_t *pi_time = (int64_t*)va_arg(args, int64_t *);
1074             *pi_time = (int64_t)FROM_TICKS(bd_tell_time(p_sys->bluray));
1075             return VLC_SUCCESS;
1076         }
1077
1078         case DEMUX_GET_POSITION:
1079         {
1080             double *pf_position = (double*)va_arg( args, double * );
1081             *pf_position = p_demux->info.i_title < (int)p_sys->i_title ?
1082                         (double)FROM_TICKS(bd_tell_time(p_sys->bluray))/CUR_LENGTH : 0.0;
1083             return VLC_SUCCESS;
1084         }
1085         case DEMUX_SET_POSITION:
1086         {
1087             double f_position = (double)va_arg(args, double);
1088             bd_seek_time(p_sys->bluray, TO_TICKS(f_position*CUR_LENGTH));
1089             return VLC_SUCCESS;
1090         }
1091
1092         case DEMUX_GET_META:
1093         {
1094             vlc_meta_t *p_meta = (vlc_meta_t *) va_arg (args, vlc_meta_t*);
1095             const META_DL *meta = p_sys->p_meta;
1096             if (meta == NULL)
1097                 return VLC_EGENERIC;
1098
1099             if (!EMPTY_STR(meta->di_name)) vlc_meta_SetTitle(p_meta, meta->di_name);
1100
1101             if (!EMPTY_STR(meta->language_code)) vlc_meta_AddExtra(p_meta, "Language", meta->language_code);
1102             if (!EMPTY_STR(meta->filename)) vlc_meta_AddExtra(p_meta, "Filename", meta->filename);
1103             if (!EMPTY_STR(meta->di_alternative)) vlc_meta_AddExtra(p_meta, "Alternative", meta->di_alternative);
1104
1105             // if (meta->di_set_number > 0) vlc_meta_SetTrackNum(p_meta, meta->di_set_number);
1106             // if (meta->di_num_sets > 0) vlc_meta_AddExtra(p_meta, "Discs numbers in Set", meta->di_num_sets);
1107
1108             if (meta->thumb_count > 0 && meta->thumbnails)
1109             {
1110                 char *psz_thumbpath;
1111                 if( asprintf( &psz_thumbpath, "%s" DIR_SEP "BDMV" DIR_SEP "META" DIR_SEP "DL" DIR_SEP "%s",
1112                               p_sys->psz_bd_path, meta->thumbnails[0].path ) > 0 )
1113                 {
1114                     char *psz_thumburl = vlc_path2uri( psz_thumbpath, "file" );
1115                     if( unlikely(psz_thumburl == NULL) )
1116                         return VLC_ENOMEM;
1117
1118                     vlc_meta_SetArtURL( p_meta, psz_thumburl );
1119                     free( psz_thumburl );
1120                 }
1121                 free( psz_thumbpath );
1122             }
1123
1124             return VLC_SUCCESS;
1125         }
1126
1127         case DEMUX_CAN_RECORD:
1128         case DEMUX_GET_FPS:
1129         case DEMUX_SET_GROUP:
1130         case DEMUX_HAS_UNSUPPORTED_META:
1131         case DEMUX_GET_ATTACHMENTS:
1132             return VLC_EGENERIC;
1133         default:
1134             msg_Warn( p_demux, "unimplemented query (%d) in control", query );
1135             return VLC_EGENERIC;
1136     }
1137     return VLC_SUCCESS;
1138 }
1139
1140 static void     blurayUpdateCurrentClip( demux_t *p_demux, uint32_t clip )
1141 {
1142     if (clip == 0xFF)
1143         return ;
1144     demux_sys_t *p_sys = p_demux->p_sys;
1145
1146     p_sys->i_current_clip = clip;
1147     BLURAY_TITLE_INFO   *info = bd_get_title_info(p_sys->bluray,
1148                                         bd_get_current_title(p_sys->bluray), 0);
1149     if ( info == NULL )
1150         return ;
1151     /* Let's assume a single video track for now.
1152      * This may brake later, but it's enough for now.
1153      */
1154     assert(info->clips[p_sys->i_current_clip].video_stream_count >= 1);
1155     p_sys->i_video_stream = info->clips[p_sys->i_current_clip].video_streams[0].pid;
1156     bd_free_title_info(info);
1157 }
1158
1159 static void blurayHandleEvent( demux_t *p_demux, const BD_EVENT *e )
1160 {
1161     demux_sys_t     *p_sys = p_demux->p_sys;
1162
1163     switch (e->event)
1164     {
1165         case BD_EVENT_TITLE:
1166             blurayUpdateTitle(p_demux, e->param);
1167             break;
1168         case BD_EVENT_PLAYITEM:
1169             blurayUpdateCurrentClip(p_demux, e->param);
1170             break;
1171         case BD_EVENT_AUDIO_STREAM:
1172         {
1173             if ( e->param == 0xFF )
1174                 break ;
1175             BLURAY_TITLE_INFO   *info = bd_get_title_info(p_sys->bluray,
1176                                        bd_get_current_title(p_sys->bluray), 0);
1177             if ( info == NULL )
1178                 break ;
1179             /* The param we get is the real stream id, not an index, ie. it starts from 1 */
1180             int pid = info->clips[p_sys->i_current_clip].audio_streams[e->param - 1].pid;
1181             int idx = findEsPairIndex( p_sys, pid );
1182             if ( idx >= 0 ) {
1183                 es_out_id_t *p_es = vlc_array_item_at_index(&p_sys->es, idx);
1184                 es_out_Control( p_demux->out, ES_OUT_SET_ES, p_es );
1185             }
1186             bd_free_title_info( info );
1187             p_sys->i_audio_stream = pid;
1188             break ;
1189         }
1190         case BD_EVENT_CHAPTER:
1191             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
1192             p_demux->info.i_seekpoint = e->param;
1193             break;
1194         case BD_EVENT_ANGLE:
1195         case BD_EVENT_IG_STREAM:
1196         default:
1197             msg_Warn( p_demux, "event: %d param: %d", e->event, e->param );
1198             break;
1199     }
1200 }
1201
1202 static void blurayHandleEvents( demux_t *p_demux )
1203 {
1204     BD_EVENT e;
1205
1206     while (bd_get_event(p_demux->p_sys->bluray, &e))
1207     {
1208         blurayHandleEvent(p_demux, &e);
1209     }
1210 }
1211
1212 #define BD_TS_PACKET_SIZE (192)
1213 #define NB_TS_PACKETS (200)
1214
1215 static int blurayDemux(demux_t *p_demux)
1216 {
1217     demux_sys_t *p_sys = p_demux->p_sys;
1218
1219     block_t *p_block = block_Alloc(NB_TS_PACKETS * (int64_t)BD_TS_PACKET_SIZE);
1220     if (!p_block) {
1221         return -1;
1222     }
1223
1224     int nread = -1;
1225     if (p_sys->b_menu == false) {
1226         blurayHandleEvents(p_demux);
1227         nread = bd_read(p_sys->bluray, p_block->p_buffer,
1228                         NB_TS_PACKETS * BD_TS_PACKET_SIZE);
1229         if (nread < 0) {
1230             block_Release(p_block);
1231             return nread;
1232         }
1233     } else {
1234         BD_EVENT e;
1235         nread = bd_read_ext(p_sys->bluray, p_block->p_buffer,
1236                             NB_TS_PACKETS * BD_TS_PACKET_SIZE, &e);
1237         if (nread < 0)
1238         {
1239             block_Release(p_block);
1240             return -1;
1241         }
1242         if (nread == 0) {
1243             if (e.event == BD_EVENT_NONE)
1244                 msg_Info(p_demux, "We reached the end of a title");
1245             else
1246                 blurayHandleEvent(p_demux, &e);
1247             block_Release(p_block);
1248             return 1;
1249         }
1250         if (p_sys->current_overlay != -1) {
1251             vlc_mutex_lock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1252             if (p_sys->p_overlays[p_sys->current_overlay]->status == ToDisplay) {
1253                 vlc_mutex_unlock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1254                 if (p_sys->p_vout == NULL)
1255                     p_sys->p_vout = input_GetVout(p_sys->p_input);
1256                 if (p_sys->p_vout != NULL) {
1257                     var_AddCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
1258                     var_AddCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
1259                     bluraySendOverlayToVout(p_demux);
1260                 }
1261             } else
1262                 vlc_mutex_unlock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1263         }
1264     }
1265
1266     p_block->i_buffer = nread;
1267
1268     stream_DemuxSend(p_sys->p_parser, p_block);
1269
1270     return 1;
1271 }