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