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