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