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