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