]> git.sesse.net Git - vlc/blob - modules/access/bluray.c
bluray: Store the meta informations in p_sys
[vlc] / modules / access / bluray.c
1 /*****************************************************************************
2  * bluray.c: Blu-ray disc support plugin
3  *****************************************************************************
4  * Copyright © 2010-2011 VideoLAN, VLC authors and libbluray AUTHORS
5  *
6  * Authors: Jean-Baptiste Kempf <jb@videolan.org>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include <assert.h>
28 #include <limits.h>                         /* PATH_MAX */
29 #if defined (HAVE_MNTENT_H) && defined(HAVE_SYS_STAT_H)
30 #include <mntent.h>
31 #include <sys/stat.h>
32 #endif
33
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36 #include <vlc_demux.h>                      /* demux_t */
37 #include <vlc_input.h>                      /* Seekpoints, chapters */
38 #include <vlc_dialog.h>                     /* BD+/AACS warnings */
39 #include <vlc_vout.h>                       /* vout_PutSubpicture / subpicture_t */
40
41 #include <libbluray/bluray.h>
42 #include <libbluray/keys.h>
43 #include <libbluray/meta_data.h>
44 #include <libbluray/overlay.h>
45
46 /*****************************************************************************
47  * Module descriptor
48  *****************************************************************************/
49
50 #define BD_MENU_TEXT        N_( "Bluray menus" )
51 #define BD_MENU_LONGTEXT    N_( "Use bluray menus. If disabled, "\
52                                 "the movie will start directly" )
53
54 /* Callbacks */
55 static int  blurayOpen ( vlc_object_t * );
56 static void blurayClose( vlc_object_t * );
57
58 vlc_module_begin ()
59     set_shortname( N_("BluRay") )
60     set_description( N_("Blu-Ray Disc support (libbluray)") )
61
62     set_category( CAT_INPUT )
63     set_subcategory( SUBCAT_INPUT_ACCESS )
64     set_capability( "access_demux", 200)
65     add_bool( "bluray-menu", false, BD_MENU_TEXT, BD_MENU_LONGTEXT, false )
66
67     add_shortcut( "bluray", "file" )
68
69     set_callbacks( blurayOpen, blurayClose )
70 vlc_module_end ()
71
72 /* libbluray's overlay.h defines 2 types of overlay (bd_overlay_plane_e). */
73 #define MAX_OVERLAY 2
74
75 typedef enum OverlayStatus {
76     Closed = 0,
77     ToDisplay,  //Used to mark the overlay to be displayed the first time.
78     Displayed,
79     Outdated    //used to update the overlay after it has been sent to the vout
80 } OverlayStatus;
81
82 typedef struct bluray_overlay_t
83 {
84     VLC_GC_MEMBERS
85
86     vlc_mutex_t         lock;
87     subpicture_t        *p_pic;
88     OverlayStatus       status;
89     subpicture_region_t *p_regions;
90 } bluray_overlay_t;
91
92 struct  demux_sys_t
93 {
94     BLURAY              *bluray;
95
96     /* Titles */
97     unsigned int        i_title;
98     unsigned int        i_longest_title;
99     input_title_t       **pp_title;
100
101     /* Meta informations */
102     const META_DL       *p_meta;
103
104     /* Menus */
105     bluray_overlay_t    *p_overlays[MAX_OVERLAY];
106     int                 current_overlay; // -1 if no current overlay;
107     bool                b_menu;
108
109     /* */
110     input_thread_t      *p_input;
111     vout_thread_t       *p_vout;
112
113     /* TS stream */
114     stream_t            *p_parser;
115 };
116
117 struct subpicture_updater_sys_t
118 {
119     bluray_overlay_t    *p_overlay;
120 };
121
122 /*****************************************************************************
123  * Local prototypes
124  *****************************************************************************/
125 static int     blurayControl(demux_t *, int, va_list);
126 static int     blurayDemux(demux_t *);
127
128 static int     blurayInitTitles(demux_t *p_demux );
129 static int     bluraySetTitle(demux_t *p_demux, int i_title);
130
131 static void    blurayOverlayProc(void *ptr, const BD_OVERLAY * const overlay);
132
133 static int     onMouseEvent( vlc_object_t *p_vout, const char *psz_var,
134                              vlc_value_t old, vlc_value_t val, void *p_data );
135
136 #define FROM_TICKS(a) (a*CLOCK_FREQ / INT64_C(90000))
137 #define TO_TICKS(a)   (a*INT64_C(90000)/CLOCK_FREQ)
138 #define CUR_LENGTH    p_sys->pp_title[p_demux->info.i_title]->i_length
139
140 /*****************************************************************************
141  * blurayOpen: module init function
142  *****************************************************************************/
143 static int blurayOpen( vlc_object_t *object )
144 {
145     demux_t *p_demux = (demux_t*)object;
146     demux_sys_t *p_sys;
147
148     char *pos_title;
149     int i_title = -1;
150     char bd_path[PATH_MAX] = { '\0' };
151     const char *error_msg = NULL;
152
153     if (strcmp(p_demux->psz_access, "bluray")) {
154         // TODO BDMV support, once we figure out what to do in libbluray
155         return VLC_EGENERIC;
156     }
157
158     /* */
159     p_demux->p_sys = p_sys = calloc(1, sizeof(*p_sys));
160     if (unlikely(!p_sys)) {
161         return VLC_ENOMEM;
162     }
163     p_sys->current_overlay = -1;
164
165     /* init demux info fields */
166     p_demux->info.i_update    = 0;
167     p_demux->info.i_title     = 0;
168     p_demux->info.i_seekpoint = 0;
169
170     TAB_INIT( p_sys->i_title, p_sys->pp_title );
171
172     /* store current bd_path */
173     if (p_demux->psz_file) {
174         strncpy(bd_path, p_demux->psz_file, sizeof(bd_path));
175         bd_path[PATH_MAX - 1] = '\0';
176     }
177
178 #if defined (HAVE_MNTENT_H) && defined (HAVE_SYS_STAT_H)
179     /* If we're passed a block device, try to convert it to the mount point. */
180     struct stat st;
181     if ( !stat (bd_path, &st)) {
182         if (S_ISBLK (st.st_mode)) {
183             FILE* mtab = setmntent ("/proc/self/mounts", "r");
184             struct mntent* m;
185             struct mntent mbuf;
186             char buf [8192];
187             while ((m = getmntent_r (mtab, &mbuf, buf, sizeof(buf))) != NULL) {
188                 if (!strcmp (m->mnt_fsname, bd_path)) {
189                     strncpy (bd_path, m->mnt_dir, sizeof(bd_path));
190                     bd_path[sizeof(bd_path) - 1] = '\0';
191                     break;
192                 }
193             }
194             endmntent (mtab);
195         }
196     }
197 #endif /* HAVE_MNTENT_H && HAVE_SYS_STAT_H */
198     p_sys->bluray = bd_open(bd_path, NULL);
199     if (!p_sys->bluray) {
200         free(p_sys);
201         return VLC_EGENERIC;
202     }
203
204     /* Warning the user about AACS/BD+ */
205     const BLURAY_DISC_INFO *disc_info = bd_get_disc_info(p_sys->bluray);
206
207     /* Is it a bluray? */
208     if (!disc_info->bluray_detected) {
209         error_msg = "Path doesn't appear to be a bluray";
210         goto error;
211     }
212
213     msg_Info(p_demux, "First play: %i, Top menu: %i\n"
214                       "HDMV Titles: %i, BD-J Titles: %i, Other: %i",
215              disc_info->first_play_supported, disc_info->top_menu_supported,
216              disc_info->num_hdmv_titles, disc_info->num_bdj_titles,
217              disc_info->num_unsupported_titles);
218
219     /* AACS */
220     if (disc_info->aacs_detected) {
221         if (!disc_info->libaacs_detected) {
222             error_msg = _("This Blu-Ray Disc needs a library for AACS decoding, "
223                       "and your system does not have it.");
224             goto error;
225         }
226         if (!disc_info->aacs_handled) {
227             error_msg = _("Your system AACS decoding library does not work. "
228                       "Missing keys?");
229             goto error;
230         }
231     }
232
233     /* BD+ */
234     if (disc_info->bdplus_detected) {
235         if (!disc_info->libbdplus_detected) {
236             error_msg = _("This Blu-Ray Disc needs a library for BD+ decoding, "
237                       "and your system does not have it.");
238             goto error;
239         }
240         if (!disc_info->bdplus_handled) {
241             error_msg = _("Your system BD+ decoding library does not work. "
242                       "Missing configuration?");
243             goto error;
244         }
245     }
246
247     /* Get titles and chapters */
248     p_sys->p_meta = bd_get_meta(p_sys->bluray);
249     if (!p_sys->p_meta)
250         goto error;
251
252     if (blurayInitTitles(p_demux) != VLC_SUCCESS) {
253         goto error;
254     }
255
256     /*
257      * Initialize the event queue, so we can receive events in blurayDemux(Menu).
258      */
259     bd_get_event(p_sys->bluray, NULL);
260
261     p_sys->b_menu = var_InheritBool( p_demux, "bluray-menu" );
262     if ( p_sys->b_menu )
263     {
264         p_sys->p_input = demux_GetParentInput(p_demux);
265         if (unlikely(!p_sys->p_input))
266             goto error;
267
268         /* libbluray will start playback from "First-Title" title */
269         bd_play(p_sys->bluray);
270
271         /* Registering overlay event handler */
272         bd_register_overlay_proc(p_sys->bluray, p_demux, blurayOverlayProc);
273     }
274     else
275     {
276         /* get title request */
277         if ((pos_title = strrchr(bd_path, ':'))) {
278             /* found character ':' for title information */
279             *(pos_title++) = '\0';
280             i_title = atoi(pos_title);
281         }
282
283         /* set start title number */
284         if (bluraySetTitle(p_demux, i_title) != VLC_SUCCESS) {
285             msg_Err( p_demux, "Could not set the title %d", i_title );
286             goto error;
287         }
288     }
289
290     p_sys->p_parser   = stream_DemuxNew(p_demux, "ts", p_demux->out);
291     if (!p_sys->p_parser) {
292         msg_Err(p_demux, "Failed to create TS demuxer");
293         goto error;
294     }
295
296     p_demux->pf_control = blurayControl;
297     p_demux->pf_demux   = blurayDemux;
298
299     return VLC_SUCCESS;
300
301 error:
302     if (error_msg)
303         dialog_Fatal(p_demux, _("Blu-Ray error"), "%s", error_msg);
304     blurayClose(object);
305     return VLC_EGENERIC;
306 }
307
308
309 /*****************************************************************************
310  * blurayClose: module destroy function
311  *****************************************************************************/
312 static void blurayClose( vlc_object_t *object )
313 {
314     demux_t *p_demux = (demux_t*)object;
315     demux_sys_t *p_sys = p_demux->p_sys;
316
317     /*
318      * Close libbluray first.
319      * This will close all the overlays before we release p_vout
320      * bd_close( NULL ) can crash
321      */
322     assert(p_sys->bluray);
323     bd_close(p_sys->bluray);
324
325     if (p_sys->p_vout != NULL) {
326         var_DelCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
327         var_DelCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
328         vlc_object_release(p_sys->p_vout);
329     }
330     if (p_sys->p_input != NULL)
331         vlc_object_release(p_sys->p_input);
332     if (p_sys->p_parser)
333         stream_Delete(p_sys->p_parser);
334
335     /* Titles */
336     for (unsigned int i = 0; i < p_sys->i_title; i++)
337         vlc_input_title_Delete(p_sys->pp_title[i]);
338     TAB_CLEAN( p_sys->i_title, p_sys->pp_title );
339
340     free(p_sys);
341 }
342
343 /*****************************************************************************
344  * subpicture_updater_t functions:
345  *****************************************************************************/
346 static int subpictureUpdaterValidate( subpicture_t *p_subpic,
347                                       bool b_fmt_src, const video_format_t *p_fmt_src,
348                                       bool b_fmt_dst, const video_format_t *p_fmt_dst,
349                                       mtime_t i_ts )
350 {
351     VLC_UNUSED( b_fmt_src );
352     VLC_UNUSED( b_fmt_dst );
353     VLC_UNUSED( p_fmt_src );
354     VLC_UNUSED( p_fmt_dst );
355     VLC_UNUSED( i_ts );
356
357     subpicture_updater_sys_t *p_upd_sys = p_subpic->updater.p_sys;
358     bluray_overlay_t         *p_overlay = p_upd_sys->p_overlay;
359
360     vlc_mutex_lock(&p_overlay->lock);
361     int res = p_overlay->status == Outdated;
362     vlc_mutex_unlock(&p_overlay->lock);
363     return res;
364 }
365
366 /* This should probably be moved to subpictures.c afterward */
367 static subpicture_region_t* subpicture_region_Clone(subpicture_region_t *p_region_src)
368 {
369     if (!p_region_src)
370         return NULL;
371     subpicture_region_t *p_region_dst = subpicture_region_New(&p_region_src->fmt);
372     if (unlikely(!p_region_dst))
373         return NULL;
374
375     p_region_dst->i_x      = p_region_src->i_x;
376     p_region_dst->i_y      = p_region_src->i_y;
377     p_region_dst->i_align  = p_region_src->i_align;
378     p_region_dst->i_alpha  = p_region_src->i_alpha;
379
380     p_region_dst->psz_text = p_region_src->psz_text ? strdup(p_region_src->psz_text) : NULL;
381     p_region_dst->psz_html = p_region_src->psz_html ? strdup(p_region_src->psz_html) : NULL;
382     if (p_region_src->p_style != NULL) {
383         p_region_dst->p_style = malloc(sizeof(*p_region_dst->p_style));
384         p_region_dst->p_style = text_style_Copy(p_region_dst->p_style,
385                                                 p_region_src->p_style);
386     }
387
388     //Palette is already copied by subpicture_region_New, we just have to duplicate p_pixels
389     for (int i = 0; i < p_region_src->p_picture->i_planes; i++)
390         memcpy(p_region_dst->p_picture->p[i].p_pixels,
391                p_region_src->p_picture->p[i].p_pixels,
392                p_region_src->p_picture->p[i].i_lines * p_region_src->p_picture->p[i].i_pitch);
393     return p_region_dst;
394 }
395
396 static void subpictureUpdaterUpdate(subpicture_t *p_subpic,
397                                     const video_format_t *p_fmt_src,
398                                     const video_format_t *p_fmt_dst,
399                                     mtime_t i_ts)
400 {
401     VLC_UNUSED(p_fmt_src);
402     VLC_UNUSED(p_fmt_dst);
403     VLC_UNUSED(i_ts);
404     subpicture_updater_sys_t *p_upd_sys = p_subpic->updater.p_sys;
405     bluray_overlay_t         *p_overlay = p_upd_sys->p_overlay;
406
407     /*
408      * When this function is called, all p_subpic regions are gone.
409      * We need to duplicate our regions (stored internaly) to this subpic.
410      */
411     vlc_mutex_lock(&p_overlay->lock);
412
413     subpicture_region_t *p_src = p_overlay->p_regions;
414     if (!p_src)
415         return;
416
417     subpicture_region_t **p_dst = &(p_subpic->p_region);
418     while (p_src != NULL) {
419         *p_dst = subpicture_region_Clone(p_src);
420         if (*p_dst == NULL)
421             break ;
422         p_dst = &((*p_dst)->p_next);
423         p_src = p_src->p_next;
424     }
425     if (*p_dst != NULL)
426         (*p_dst)->p_next = NULL;
427     p_overlay->status = Displayed;
428     vlc_mutex_unlock(&p_overlay->lock);
429 }
430
431 static void subpictureUpdaterDestroy(subpicture_t *p_subpic)
432 {
433     vlc_gc_decref(p_subpic->updater.p_sys->p_overlay);
434 }
435
436 /*****************************************************************************
437  * User input events:
438  *****************************************************************************/
439 static int onMouseEvent(vlc_object_t *p_vout, const char *psz_var, vlc_value_t old,
440                         vlc_value_t val, void *p_data)
441 {
442     demux_t     *p_demux = (demux_t*)p_data;
443     demux_sys_t *p_sys   = p_demux->p_sys;
444     mtime_t     now      = mdate();
445     VLC_UNUSED(old);
446     VLC_UNUSED(p_vout);
447
448     if (psz_var[6] == 'm')   //Mouse moved
449         bd_mouse_select(p_sys->bluray, now, val.coords.x, val.coords.y);
450     else if (psz_var[6] == 'c') {
451         bd_mouse_select(p_sys->bluray, now, val.coords.x, val.coords.y);
452         bd_user_input(p_sys->bluray, now, BD_VK_MOUSE_ACTIVATE);
453     } else {
454         assert(0);
455     }
456     return VLC_SUCCESS;
457 }
458
459 /*****************************************************************************
460  * libbluray overlay handling:
461  *****************************************************************************/
462 static void blurayCleanOverayStruct(gc_object_t *p_gc)
463 {
464     bluray_overlay_t *p_overlay = vlc_priv(p_gc, bluray_overlay_t);
465
466     /*
467      * This will be called when destroying the picture.
468      * Don't delete it again from here!
469      */
470     vlc_mutex_destroy(&p_overlay->lock);
471     subpicture_region_Delete(p_overlay->p_regions);
472     free(p_overlay);
473 }
474
475 static void blurayCloseAllOverlays(demux_t *p_demux)
476 {
477     demux_sys_t *p_sys = p_demux->p_sys;
478
479     p_demux->p_sys->current_overlay = -1;
480     if (p_sys->p_vout != NULL) {
481         for (int i = 0; i < 0; i++) {
482             if (p_sys->p_overlays[i] != NULL) {
483                 vout_FlushSubpictureChannel(p_sys->p_vout,
484                                             p_sys->p_overlays[i]->p_pic->i_channel);
485                 vlc_gc_decref(p_sys->p_overlays[i]);
486                 p_sys->p_overlays[i] = NULL;
487             }
488         }
489         var_DelCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
490         var_DelCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
491         vlc_object_release(p_sys->p_vout);
492         p_sys->p_vout = NULL;
493     }
494 }
495
496 /*
497  * Mark the overlay as "ToDisplay" status.
498  * This will not send the overlay to the vout instantly, as the vout
499  * may not be acquired (not acquirable) yet.
500  * If is has already been acquired, the overlay has already been sent to it,
501  * therefore, we only flag the overlay as "Outdated"
502  */
503 static void blurayActivateOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
504 {
505     demux_sys_t *p_sys = p_demux->p_sys;
506
507     /*
508      * If the overlay is already displayed, mark the picture as outdated.
509      * We must NOT use vout_PutSubpicture if a picture is already displayed.
510      */
511     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
512     if ((p_sys->p_overlays[ov->plane]->status == Displayed ||
513             p_sys->p_overlays[ov->plane]->status == Outdated)
514             && p_sys->p_vout) {
515         p_sys->p_overlays[ov->plane]->status = Outdated;
516         vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
517         return ;
518     }
519     /*
520      * Mark the overlay as available, but don't display it right now.
521      * the blurayDemuxMenu will send it to vout, as it may be unavailable when
522      * the overlay is computed
523      */
524     p_sys->current_overlay = ov->plane;
525     p_sys->p_overlays[ov->plane]->status = ToDisplay;
526     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
527 }
528
529 static void blurayInitOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
530 {
531     demux_sys_t *p_sys = p_demux->p_sys;
532
533     assert(p_sys->p_overlays[ov->plane] == NULL);
534
535     p_sys->p_overlays[ov->plane] = calloc(1, sizeof(**p_sys->p_overlays));
536     if (unlikely(!p_sys->p_overlays[ov->plane]))
537         return;
538
539     subpicture_updater_sys_t *p_upd_sys = malloc(sizeof(*p_upd_sys));
540     if (unlikely(!p_upd_sys)) {
541         free(p_sys->p_overlays[ov->plane]);
542         p_sys->p_overlays[ov->plane] = NULL;
543         return;
544     }
545     vlc_gc_init(p_sys->p_overlays[ov->plane], blurayCleanOverayStruct);
546     /* Incrementing refcounter: vout + demux */
547     vlc_gc_incref(p_sys->p_overlays[ov->plane]);
548
549     p_upd_sys->p_overlay = p_sys->p_overlays[ov->plane];
550     subpicture_updater_t updater = {
551         .pf_validate = subpictureUpdaterValidate,
552         .pf_update   = subpictureUpdaterUpdate,
553         .pf_destroy  = subpictureUpdaterDestroy,
554         .p_sys       = p_upd_sys,
555     };
556     p_sys->p_overlays[ov->plane]->p_pic = subpicture_New(&updater);
557     p_sys->p_overlays[ov->plane]->p_pic->i_original_picture_width = ov->w;
558     p_sys->p_overlays[ov->plane]->p_pic->i_original_picture_height = ov->h;
559     p_sys->p_overlays[ov->plane]->p_pic->b_ephemer = true;
560     p_sys->p_overlays[ov->plane]->p_pic->b_absolute = true;
561 }
562
563 /**
564  * Destroy every regions in the subpicture.
565  * This is done in two steps:
566  * - Wiping our private regions list
567  * - Flagging the overlay as outdated, so the changes are replicated from
568  *   the subpicture_updater_t::pf_update
569  * This doesn't destroy the subpicture, as the overlay may be used again by libbluray.
570  */
571 static void blurayClearOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
572 {
573     demux_sys_t *p_sys = p_demux->p_sys;
574
575     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
576
577     subpicture_region_ChainDelete(p_sys->p_overlays[ov->plane]->p_regions);
578     p_sys->p_overlays[ov->plane]->p_regions = NULL;
579     p_sys->p_overlays[ov->plane]->status = Outdated;
580     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
581 }
582
583 /*
584  * This will draw to the overlay by adding a region to our region list
585  * This will have to be copied to the subpicture used to render the overlay.
586  */
587 static void blurayDrawOverlay(demux_t *p_demux, const BD_OVERLAY* const ov)
588 {
589     demux_sys_t *p_sys = p_demux->p_sys;
590
591     /*
592      * Compute a subpicture_region_t.
593      * It will be copied and sent to the vout later.
594      */
595     if (!ov->img)
596         return;
597
598     vlc_mutex_lock(&p_sys->p_overlays[ov->plane]->lock);
599
600     /* Find a region to update */
601     subpicture_region_t *p_reg = p_sys->p_overlays[ov->plane]->p_regions;
602     subpicture_region_t *p_last = NULL;
603     while (p_reg != NULL) {
604         p_last = p_reg;
605         if (p_reg->i_x == ov->x && p_reg->i_y == ov->y &&
606                 p_reg->fmt.i_width == ov->w && p_reg->fmt.i_height == ov->h)
607             break;
608         p_reg = p_reg->p_next;
609     }
610
611     /* If there is no region to update, create a new one. */
612     if (!p_reg) {
613         video_format_t fmt;
614         video_format_Init(&fmt, 0);
615         video_format_Setup(&fmt, VLC_CODEC_YUVP, ov->w, ov->h, 1, 1);
616
617         p_reg = subpicture_region_New(&fmt);
618         p_reg->i_x = ov->x;
619         p_reg->i_y = ov->y;
620         /* Append it to our list. */
621         if (p_last != NULL)
622             p_last->p_next = p_reg;
623         else /* If we don't have a last region, then our list empty */
624             p_sys->p_overlays[ov->plane]->p_regions = p_reg;
625     }
626
627     /* Now we can update the region, regardless it's an update or an insert */
628     const BD_PG_RLE_ELEM *img = ov->img;
629     for (int y = 0; y < ov->h; y++) {
630         for (int x = 0; x < ov->w;) {
631             memset(p_reg->p_picture->p[0].p_pixels +
632                    y * p_reg->p_picture->p[0].i_pitch + x,
633                    img->color, img->len);
634             x += img->len;
635             img++;
636         }
637     }
638     if (ov->palette) {
639         p_reg->fmt.p_palette->i_entries = 256;
640         for (int i = 0; i < 256; ++i) {
641             p_reg->fmt.p_palette->palette[i][0] = ov->palette[i].Y;
642             p_reg->fmt.p_palette->palette[i][1] = ov->palette[i].Cb;
643             p_reg->fmt.p_palette->palette[i][2] = ov->palette[i].Cr;
644             p_reg->fmt.p_palette->palette[i][3] = ov->palette[i].T;
645         }
646     }
647     vlc_mutex_unlock(&p_sys->p_overlays[ov->plane]->lock);
648     /*
649      * /!\ The region is now stored in our internal list, but not in the subpicture /!\
650      */
651 }
652
653 static void blurayOverlayProc(void *ptr, const BD_OVERLAY *const overlay)
654 {
655     demux_t *p_demux = (demux_t*)ptr;
656
657     if (!overlay) {
658         msg_Info(p_demux, "Closing overlay.");
659         blurayCloseAllOverlays(p_demux);
660         return;
661     }
662     switch (overlay->cmd) {
663         case BD_OVERLAY_INIT:
664             msg_Info(p_demux, "Initializing overlay");
665             blurayInitOverlay(p_demux, overlay);
666             break;
667         case BD_OVERLAY_CLEAR:
668             blurayClearOverlay(p_demux, overlay);
669             break;
670         case BD_OVERLAY_FLUSH:
671             blurayActivateOverlay(p_demux, overlay);
672             break;
673         case BD_OVERLAY_DRAW:
674             blurayDrawOverlay(p_demux, overlay);
675             break;
676         default:
677             msg_Warn(p_demux, "Unknown BD overlay command: %u", overlay->cmd);
678             break;
679     }
680 }
681
682 static void bluraySendOverlayToVout(demux_t *p_demux)
683 {
684     demux_sys_t *p_sys = p_demux->p_sys;
685
686     assert(p_sys->current_overlay >= 0 &&
687            p_sys->p_overlays[p_sys->current_overlay] != NULL &&
688            p_sys->p_overlays[p_sys->current_overlay]->p_pic != NULL);
689
690     p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_start =
691         p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_stop = mdate();
692     p_sys->p_overlays[p_sys->current_overlay]->p_pic->i_channel =
693         vout_RegisterSubpictureChannel(p_sys->p_vout);
694     /*
695      * After this point, the picture should not be accessed from the demux thread,
696      * as it's hold by the vout thread.
697      * This must be done only once per subpicture, ie. only once between each
698      * blurayInitOverlay & blurayCloseOverlay call.
699      */
700     vout_PutSubpicture(p_sys->p_vout, p_sys->p_overlays[p_sys->current_overlay]->p_pic);
701     /*
702      * Mark the picture as Outdated, as it contains no region for now.
703      * This will make the subpicture_updater_t call pf_update
704      */
705     p_sys->p_overlays[p_sys->current_overlay]->status = Outdated;
706 }
707
708 static int blurayInitTitles(demux_t *p_demux )
709 {
710     demux_sys_t *p_sys = p_demux->p_sys;
711
712     /* get and set the titles */
713     unsigned i_title = bd_get_titles(p_sys->bluray, TITLES_RELEVANT, 60);
714     int64_t duration = 0;
715
716     for (unsigned int i = 0; i < i_title; i++) {
717         input_title_t *t = vlc_input_title_New();
718         if (!t)
719             break;
720
721         BLURAY_TITLE_INFO *title_info = bd_get_title_info(p_sys->bluray, i, 0);
722         if (!title_info)
723             break;
724         t->i_length = FROM_TICKS(title_info->duration);
725
726         if (t->i_length > duration) {
727             duration = t->i_length;
728             p_sys->i_longest_title = i;
729         }
730
731         for ( unsigned int j = 0; j < title_info->chapter_count; j++) {
732             seekpoint_t *s = vlc_seekpoint_New();
733             if (!s)
734                 break;
735             s->i_time_offset = title_info->chapters[j].offset;
736
737             TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
738         }
739         TAB_APPEND( p_sys->i_title, p_sys->pp_title, t );
740         bd_free_title_info(title_info);
741     }
742     return VLC_SUCCESS;
743 }
744
745 static void blurayResetParser( demux_t *p_demux )
746 {
747     /*
748      * This is a hack and will have to be removed.
749      * The parser should be flushed, and not destroy/created each time
750      * we are changing title.
751      */
752     demux_sys_t *p_sys = p_demux->p_sys;
753     if (!p_sys->p_parser)
754         return;
755     stream_Delete(p_sys->p_parser);
756     p_sys->p_parser = stream_DemuxNew(p_demux, "ts", p_demux->out);
757     if (!p_sys->p_parser) {
758         msg_Err(p_demux, "Failed to create TS demuxer");
759     }
760 }
761
762 static void blurayUpdateTitle( demux_t *p_demux, int i_title )
763 {
764     blurayResetParser(p_demux);
765     if (i_title >= p_demux->p_sys->i_title)
766         return;
767
768     /* read title info and init some values */
769     p_demux->info.i_title = i_title;
770     p_demux->info.i_seekpoint = 0;
771     p_demux->info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
772 }
773
774 /*****************************************************************************
775  * bluraySetTitle: select new BD title
776  *****************************************************************************/
777 static int bluraySetTitle(demux_t *p_demux, int i_title)
778 {
779     demux_sys_t *p_sys = p_demux->p_sys;
780
781     /* Looking for the main title, ie the longest duration */
782     if (i_title < 0)
783         i_title = p_sys->i_longest_title;
784     else if ((unsigned)i_title > p_sys->i_title)
785         return VLC_EGENERIC;
786
787     msg_Dbg( p_demux, "Selecting Title %i", i_title);
788
789     /* Select Blu-Ray title */
790     if (bd_select_title(p_demux->p_sys->bluray, i_title) == 0 ) {
791         msg_Err(p_demux, "cannot select bd title '%d'", p_demux->info.i_title);
792         return VLC_EGENERIC;
793     }
794     blurayUpdateTitle( p_demux, i_title );
795
796     return VLC_SUCCESS;
797 }
798
799
800 /*****************************************************************************
801  * blurayControl: handle the controls
802  *****************************************************************************/
803 static int blurayControl(demux_t *p_demux, int query, va_list args)
804 {
805     demux_sys_t *p_sys = p_demux->p_sys;
806     bool     *pb_bool;
807     int64_t  *pi_64;
808
809     switch (query) {
810         case DEMUX_CAN_SEEK:
811         case DEMUX_CAN_PAUSE:
812         case DEMUX_CAN_CONTROL_PACE:
813              pb_bool = (bool*)va_arg( args, bool * );
814              *pb_bool = true;
815              break;
816
817         case DEMUX_GET_PTS_DELAY:
818             pi_64 = (int64_t*)va_arg( args, int64_t * );
819             *pi_64 =
820                 INT64_C(1000) * var_InheritInteger( p_demux, "disc-caching" );
821             break;
822
823         case DEMUX_SET_PAUSE_STATE:
824             /* Nothing to do */
825             break;
826
827         case DEMUX_SET_TITLE:
828         {
829             int i_title = (int)va_arg( args, int );
830             if (bluraySetTitle(p_demux, i_title) != VLC_SUCCESS)
831                 return VLC_EGENERIC;
832             break;
833         }
834         case DEMUX_SET_SEEKPOINT:
835         {
836             int i_chapter = (int)va_arg( args, int );
837             bd_seek_chapter( p_sys->bluray, i_chapter );
838             p_demux->info.i_update = INPUT_UPDATE_SEEKPOINT;
839             break;
840         }
841
842         case DEMUX_GET_TITLE_INFO:
843         {
844             input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
845             int *pi_int             = (int*)va_arg( args, int* );
846             int *pi_title_offset    = (int*)va_arg( args, int* );
847             int *pi_chapter_offset  = (int*)va_arg( args, int* );
848
849             /* */
850             *pi_title_offset   = 0;
851             *pi_chapter_offset = 0;
852
853             /* Duplicate local title infos */
854             *pi_int = p_sys->i_title;
855             *ppp_title = calloc( p_sys->i_title, sizeof(input_title_t **) );
856             for( unsigned int i = 0; i < p_sys->i_title; i++ )
857                 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->pp_title[i]);
858
859             return VLC_SUCCESS;
860         }
861
862         case DEMUX_GET_LENGTH:
863         {
864             int64_t *pi_length = (int64_t*)va_arg(args, int64_t *);
865             *pi_length = p_demux->info.i_title < p_sys->i_title ? CUR_LENGTH : 0;
866             return VLC_SUCCESS;
867         }
868         case DEMUX_SET_TIME:
869         {
870             int64_t i_time = (int64_t)va_arg(args, int64_t);
871             bd_seek_time(p_sys->bluray, TO_TICKS(i_time));
872             return VLC_SUCCESS;
873         }
874         case DEMUX_GET_TIME:
875         {
876             int64_t *pi_time = (int64_t*)va_arg(args, int64_t *);
877             *pi_time = (int64_t)FROM_TICKS(bd_tell_time(p_sys->bluray));
878             return VLC_SUCCESS;
879         }
880
881         case DEMUX_GET_POSITION:
882         {
883             double *pf_position = (double*)va_arg( args, double * );
884             *pf_position = p_demux->info.i_title < p_sys->i_title ?
885                         (double)FROM_TICKS(bd_tell_time(p_sys->bluray))/CUR_LENGTH : 0.0;
886             return VLC_SUCCESS;
887         }
888         case DEMUX_SET_POSITION:
889         {
890             double f_position = (double)va_arg(args, double);
891             bd_seek_time(p_sys->bluray, TO_TICKS(f_position*CUR_LENGTH));
892             return VLC_SUCCESS;
893         }
894
895         case DEMUX_GET_META:
896         {
897             vlc_meta_t *p_meta = (vlc_meta_t *) va_arg (args, vlc_meta_t*);
898             const META_DL *meta = p_sys->p_meta;
899
900             if (!EMPTY_STR(meta->di_name)) vlc_meta_SetTitle(p_meta, meta->di_name);
901
902             if (!EMPTY_STR(meta->language_code)) vlc_meta_AddExtra(p_meta, "Language", meta->language_code);
903             if (!EMPTY_STR(meta->filename)) vlc_meta_AddExtra(p_meta, "Filename", meta->filename);
904             if (!EMPTY_STR(meta->di_alternative)) vlc_meta_AddExtra(p_meta, "Alternative", meta->di_alternative);
905
906             // if (meta->di_set_number > 0) vlc_meta_SetTrackNum(p_meta, meta->di_set_number);
907             // if (meta->di_num_sets > 0) vlc_meta_AddExtra(p_meta, "Discs numbers in Set", meta->di_num_sets);
908
909             if (meta->thumb_count > 0 && meta->thumbnails) {
910                 vlc_meta_SetArtURL(p_meta, meta->thumbnails[0].path);
911             }
912
913             return VLC_SUCCESS;
914         }
915
916         case DEMUX_CAN_RECORD:
917         case DEMUX_GET_FPS:
918         case DEMUX_SET_GROUP:
919         case DEMUX_HAS_UNSUPPORTED_META:
920         case DEMUX_GET_ATTACHMENTS:
921             return VLC_EGENERIC;
922         default:
923             msg_Warn( p_demux, "unimplemented query (%d) in control", query );
924             return VLC_EGENERIC;
925     }
926     return VLC_SUCCESS;
927 }
928
929 static void blurayHandleEvent( demux_t *p_demux, const BD_EVENT *e )
930 {
931     demux_sys_t *p_sys = p_demux->p_sys;
932
933     switch (e->event)
934     {
935         case BD_EVENT_TITLE:
936             blurayUpdateTitle( p_demux, e->param );
937             break;
938         case BD_EVENT_PLAYITEM:
939             break;
940         case BD_EVENT_AUDIO_STREAM:
941             break;
942         case BD_EVENT_CHAPTER:
943             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
944             p_demux->info.i_seekpoint = 0;
945             break;
946         case BD_EVENT_ANGLE:
947         case BD_EVENT_IG_STREAM:
948         default:
949             msg_Warn( p_demux, "event: %d param: %d", e->event, e->param );
950             break;
951     }
952 }
953
954 static void blurayHandleEvents( demux_t *p_demux )
955 {
956     BD_EVENT e;
957
958     while (bd_get_event(p_demux->p_sys->bluray, &e))
959     {
960         blurayHandleEvent(p_demux, &e);
961     }
962 }
963
964 #define BD_TS_PACKET_SIZE (192)
965 #define NB_TS_PACKETS (200)
966
967 static int blurayDemux(demux_t *p_demux)
968 {
969     demux_sys_t *p_sys = p_demux->p_sys;
970
971     block_t *p_block = block_New(p_demux, NB_TS_PACKETS * (int64_t)BD_TS_PACKET_SIZE);
972     if (!p_block) {
973         return -1;
974     }
975
976     int nread = -1;
977     if (p_sys->b_menu == false) {
978         blurayHandleEvents(p_demux);
979         nread = bd_read(p_sys->bluray, p_block->p_buffer,
980                 NB_TS_PACKETS * BD_TS_PACKET_SIZE);
981         if (nread < 0) {
982             block_Release(p_block);
983             return nread;
984         }
985     }
986     else {
987         BD_EVENT e;
988         nread = bd_read_ext( p_sys->bluray, p_block->p_buffer,
989                 NB_TS_PACKETS * BD_TS_PACKET_SIZE, &e );
990         if ( nread == 0 ) {
991             if ( e.event == BD_EVENT_NONE )
992                 msg_Info( p_demux, "We reached the end of a title" );
993             else
994                 blurayHandleEvent( p_demux, &e );
995             block_Release(p_block);
996             return 1;
997         }
998         if (p_sys->current_overlay != -1)
999         {
1000             vlc_mutex_lock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1001             if (p_sys->p_overlays[p_sys->current_overlay]->status == ToDisplay) {
1002                 vlc_mutex_unlock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1003                 if (p_sys->p_vout == NULL)
1004                     p_sys->p_vout = input_GetVout(p_sys->p_input);
1005                 if (p_sys->p_vout != NULL) {
1006                     var_AddCallback(p_sys->p_vout, "mouse-moved", &onMouseEvent, p_demux);
1007                     var_AddCallback(p_sys->p_vout, "mouse-clicked", &onMouseEvent, p_demux);
1008                     bluraySendOverlayToVout(p_demux);
1009                 }
1010             } else
1011                 vlc_mutex_unlock(&p_sys->p_overlays[p_sys->current_overlay]->lock);
1012         }
1013     }
1014
1015     p_block->i_buffer = nread;
1016
1017     stream_DemuxSend( p_sys->p_parser, p_block );
1018
1019     return 1;
1020 }