packetizer: hevc: don't double store poc prev msb/lsb
[vlc.git] / modules / stream_out / bridge.c
bloba26c6685e03fdca7e44c2b6a9cb229949481ef79
1 /*****************************************************************************
2 * bridge.c: bridge stream output module
3 *****************************************************************************
4 * Copyright (C) 2005-2008 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
8 * Antoine Cellerier <dionoea at videolan dot org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
26 * Preamble
27 *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_sout.h>
36 #include <vlc_block.h>
38 /*****************************************************************************
39 * Module descriptor
40 *****************************************************************************/
41 #define ID_TEXT N_("ID")
42 #define ID_LONGTEXT N_( \
43 "Integer identifier for this elementary stream. This will be used to " \
44 "\"find\" this stream later." )
46 #define DEST_TEXT N_( "Destination bridge-in name" )
47 #define DEST_LONGTEXT N_( \
48 "Name of the destination bridge-in. If you do not need more " \
49 "than one bridge-in at a time, you can discard this option." )
51 #define DELAY_TEXT N_("Delay")
52 #define DELAY_LONGTEXT N_("Pictures coming from the picture video outputs " \
53 "will be delayed according to this value (in milliseconds, should be "\
54 ">= 100 ms). For high values, you will need to raise caching values." )
56 #define ID_OFFSET_TEXT N_("ID Offset")
57 #define ID_OFFSET_LONGTEXT N_("Offset to add to the stream IDs specified in " \
58 "bridge_out to obtain the stream IDs bridge_in will register.")
60 #define NAME_TEXT N_( "Name of current instance" )
61 #define NAME_LONGTEXT N_( \
62 "Name of this bridge-in instance. If you do not need more " \
63 "than one bridge-in at a time, you can discard this option." )
65 #define PLACEHOLDER_TEXT N_( "Fallback to placeholder stream when out of data" )
66 #define PLACEHOLDER_LONGTEXT N_( \
67 "If set to true, the bridge will discard all input elementary streams " \
68 "except if it doesn't receive data from another bridge-in. This can " \
69 "be used to configure a place holder stream when the real source " \
70 "breaks. Source and placeholder streams should have the same format." )
72 #define PLACEHOLDER_DELAY_TEXT N_( "Placeholder delay" )
73 #define PLACEHOLDER_DELAY_LONGTEXT N_( \
74 "Delay (in ms) before the placeholder kicks in." )
76 #define PLACEHOLDER_IFRAME_TEXT N_( "Wait for I frame before toggling placeholder" )
77 #define PLACEHOLDER_IFRAME_LONGTEXT N_( \
78 "If enabled, switching between the placeholder and the normal stream " \
79 "will only occur on I frames. This will remove artifacts on stream " \
80 "switching at the expense of a slightly longer delay, depending on " \
81 "the frequence of I frames in the streams." )
83 static int OpenOut ( vlc_object_t * );
84 static void CloseOut( vlc_object_t * );
85 static int OpenIn ( vlc_object_t * );
86 static void CloseIn ( vlc_object_t * );
88 #define SOUT_CFG_PREFIX_OUT "sout-bridge-out-"
89 #define SOUT_CFG_PREFIX_IN "sout-bridge-in-"
91 vlc_module_begin ()
92 set_shortname( N_("Bridge"))
93 set_description( N_("Bridge stream output"))
94 add_submodule ()
95 set_section( N_("Bridge out"), NULL )
96 set_capability( "sout stream", 50 )
97 add_shortcut( "bridge-out" )
98 /* Only usable with VLM. No category so not in gui preferences
99 set_category( CAT_SOUT )
100 set_subcategory( SUBCAT_SOUT_STREAM )*/
101 add_integer( SOUT_CFG_PREFIX_OUT "id", 0, ID_TEXT, ID_LONGTEXT,
102 false )
103 add_string( SOUT_CFG_PREFIX_OUT "in-name", "default",
104 DEST_TEXT, DEST_LONGTEXT, false )
105 set_callbacks( OpenOut, CloseOut )
107 add_submodule ()
108 set_section( N_("Bridge in"), NULL )
109 set_capability( "sout stream", 50 )
110 add_shortcut( "bridge-in" )
111 /*set_category( CAT_SOUT )
112 set_subcategory( SUBCAT_SOUT_STREAM )*/
113 add_integer( SOUT_CFG_PREFIX_IN "delay", 0, DELAY_TEXT,
114 DELAY_LONGTEXT, false )
115 add_integer( SOUT_CFG_PREFIX_IN "id-offset", 8192, ID_OFFSET_TEXT,
116 ID_OFFSET_LONGTEXT, false )
117 add_string( SOUT_CFG_PREFIX_IN "name", "default",
118 NAME_TEXT, NAME_LONGTEXT, false )
119 add_bool( SOUT_CFG_PREFIX_IN "placeholder", false,
120 PLACEHOLDER_TEXT, PLACEHOLDER_LONGTEXT, false )
121 add_integer( SOUT_CFG_PREFIX_IN "placeholder-delay", 200,
122 PLACEHOLDER_DELAY_TEXT, PLACEHOLDER_DELAY_LONGTEXT, false )
123 add_bool( SOUT_CFG_PREFIX_IN "placeholder-switch-on-iframe", true,
124 PLACEHOLDER_IFRAME_TEXT, PLACEHOLDER_IFRAME_LONGTEXT, false )
125 set_callbacks( OpenIn, CloseIn )
127 vlc_module_end ()
130 /*****************************************************************************
131 * Local prototypes
132 *****************************************************************************/
133 static const char *const ppsz_sout_options_out[] = {
134 "id", "in-name", NULL
137 static const char *const ppsz_sout_options_in[] = {
138 "delay", "id-offset", "name",
139 "placeholder", "placeholder-delay", "placeholder-switch-on-iframe",
140 NULL
143 static sout_stream_id_sys_t *AddOut( sout_stream_t *, const es_format_t * );
144 static void DelOut ( sout_stream_t *, sout_stream_id_sys_t * );
145 static int SendOut( sout_stream_t *, sout_stream_id_sys_t *, block_t * );
147 static sout_stream_id_sys_t *AddIn( sout_stream_t *, const es_format_t * );
148 static void DelIn ( sout_stream_t *, sout_stream_id_sys_t * );
149 static int SendIn( sout_stream_t *, sout_stream_id_sys_t *, block_t * );
151 typedef struct bridged_es_t
153 es_format_t fmt;
154 block_t *p_block;
155 block_t **pp_last;
156 bool b_empty;
158 /* bridge in part */
159 sout_stream_id_sys_t *id;
160 mtime_t i_last;
161 bool b_changed;
162 } bridged_es_t;
164 typedef struct bridge_t
166 bridged_es_t **pp_es;
167 int i_es_num;
168 } bridge_t;
170 static vlc_mutex_t lock = VLC_STATIC_MUTEX;
173 * Bridge out
176 typedef struct out_sout_stream_sys_t
178 bridged_es_t *p_es;
179 int i_id;
180 bool b_inited;
182 char *psz_name;
183 } out_sout_stream_sys_t;
185 /*****************************************************************************
186 * OpenOut:
187 *****************************************************************************/
188 static int OpenOut( vlc_object_t *p_this )
190 sout_stream_t *p_stream = (sout_stream_t *)p_this;
191 out_sout_stream_sys_t *p_sys;
192 vlc_value_t val;
194 config_ChainParse( p_stream, SOUT_CFG_PREFIX_OUT, ppsz_sout_options_out,
195 p_stream->p_cfg );
197 p_sys = malloc( sizeof( out_sout_stream_sys_t ) );
198 if( unlikely( !p_sys ) )
199 return VLC_ENOMEM;
200 p_sys->b_inited = false;
202 var_Get( p_stream, SOUT_CFG_PREFIX_OUT "id", &val );
203 p_sys->i_id = val.i_int;
205 var_Get( p_stream, SOUT_CFG_PREFIX_OUT "in-name", &val );
206 if( asprintf( &p_sys->psz_name, "bridge-struct-%s", val.psz_string )<0 )
208 free( val.psz_string );
209 free( p_sys );
210 return VLC_ENOMEM;
212 free( val.psz_string );
214 p_stream->pf_add = AddOut;
215 p_stream->pf_del = DelOut;
216 p_stream->pf_send = SendOut;
218 p_stream->p_sys = (sout_stream_sys_t *)p_sys;
219 p_stream->pace_nocontrol = true;
221 return VLC_SUCCESS;
224 /*****************************************************************************
225 * CloseOut:
226 *****************************************************************************/
227 static void CloseOut( vlc_object_t * p_this )
229 sout_stream_t *p_stream = (sout_stream_t*)p_this;
230 out_sout_stream_sys_t *p_sys = (out_sout_stream_sys_t *)p_stream->p_sys;
232 free( p_sys->psz_name );
233 free( p_sys );
236 static sout_stream_id_sys_t * AddOut( sout_stream_t *p_stream, const es_format_t *p_fmt )
238 out_sout_stream_sys_t *p_sys = (out_sout_stream_sys_t *)p_stream->p_sys;
239 bridge_t *p_bridge;
240 bridged_es_t *p_es;
241 int i;
243 if ( p_sys->b_inited )
245 msg_Err( p_stream, "bridge-out can only handle 1 es at a time." );
246 return NULL;
248 p_sys->b_inited = true;
250 vlc_mutex_lock( &lock );
252 p_bridge = var_GetAddress( p_stream->obj.libvlc, p_sys->psz_name );
253 if ( p_bridge == NULL )
255 p_bridge = xmalloc( sizeof( bridge_t ) );
257 var_Create( p_stream->obj.libvlc, p_sys->psz_name, VLC_VAR_ADDRESS );
258 var_SetAddress( p_stream->obj.libvlc, p_sys->psz_name, p_bridge );
260 p_bridge->i_es_num = 0;
261 p_bridge->pp_es = NULL;
264 for ( i = 0; i < p_bridge->i_es_num; i++ )
266 if ( p_bridge->pp_es[i]->b_empty && !p_bridge->pp_es[i]->b_changed )
267 break;
270 if ( i == p_bridge->i_es_num )
272 p_bridge->pp_es = xrealloc( p_bridge->pp_es,
273 (p_bridge->i_es_num + 1) * sizeof(bridged_es_t *) );
274 p_bridge->i_es_num++;
275 p_bridge->pp_es[i] = xmalloc( sizeof(bridged_es_t) );
278 p_sys->p_es = p_es = p_bridge->pp_es[i];
280 p_es->fmt = *p_fmt;
281 p_es->fmt.i_id = p_sys->i_id;
282 p_es->p_block = NULL;
283 p_es->pp_last = &p_es->p_block;
284 p_es->b_empty = false;
286 p_es->id = NULL;
287 p_es->i_last = VLC_TS_INVALID;
288 p_es->b_changed = true;
290 msg_Dbg( p_stream, "bridging out input codec=%4.4s id=%d pos=%d",
291 (char*)&p_es->fmt.i_codec, p_es->fmt.i_id, i );
293 vlc_mutex_unlock( &lock );
295 return (sout_stream_id_sys_t *)p_sys;
298 static void DelOut( sout_stream_t *p_stream, sout_stream_id_sys_t *id )
300 VLC_UNUSED(id);
301 out_sout_stream_sys_t *p_sys = (out_sout_stream_sys_t *)p_stream->p_sys;
302 bridged_es_t *p_es;
304 if ( !p_sys->b_inited )
305 return;
307 vlc_mutex_lock( &lock );
309 p_es = p_sys->p_es;
311 p_es->b_empty = true;
312 block_ChainRelease( p_es->p_block );
313 p_es->p_block = NULL;
315 p_es->b_changed = true;
316 vlc_mutex_unlock( &lock );
318 p_sys->b_inited = false;
321 static int SendOut( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
322 block_t *p_buffer )
324 out_sout_stream_sys_t *p_sys = (out_sout_stream_sys_t *)p_stream->p_sys;
325 bridged_es_t *p_es;
327 if ( (out_sout_stream_sys_t *)id != p_sys )
329 block_ChainRelease( p_buffer );
330 return VLC_SUCCESS;
333 vlc_mutex_lock( &lock );
335 p_es = p_sys->p_es;
336 *p_es->pp_last = p_buffer;
337 while ( p_buffer != NULL )
339 p_es->pp_last = &p_buffer->p_next;
340 p_buffer = p_buffer->p_next;
343 vlc_mutex_unlock( &lock );
345 return VLC_SUCCESS;
350 * Bridge in
353 typedef struct in_sout_stream_sys_t
355 int i_id_offset;
356 mtime_t i_delay;
358 char *psz_name;
360 bool b_placeholder;
361 bool b_switch_on_iframe;
362 int i_state;
363 mtime_t i_placeholder_delay;
364 sout_stream_id_sys_t *id_video;
365 mtime_t i_last_video;
366 sout_stream_id_sys_t *id_audio;
367 mtime_t i_last_audio;
368 } in_sout_stream_sys_t;
370 enum { placeholder_on, placeholder_off };
372 /*****************************************************************************
373 * OpenIn:
374 *****************************************************************************/
375 static int OpenIn( vlc_object_t *p_this )
377 sout_stream_t *p_stream = (sout_stream_t*)p_this;
378 in_sout_stream_sys_t *p_sys;
379 vlc_value_t val;
381 p_sys = malloc( sizeof( in_sout_stream_sys_t ) );
382 if( unlikely( !p_sys ) )
383 return VLC_ENOMEM;
385 if( !p_stream->p_next )
387 msg_Err( p_stream, "cannot create chain" );
388 free( p_sys );
389 return VLC_EGENERIC;
392 config_ChainParse( p_stream, SOUT_CFG_PREFIX_IN, ppsz_sout_options_in,
393 p_stream->p_cfg );
395 var_Get( p_stream, SOUT_CFG_PREFIX_IN "id-offset", &val );
396 p_sys->i_id_offset = val.i_int;
398 var_Get( p_stream, SOUT_CFG_PREFIX_IN "delay", &val );
399 p_sys->i_delay = (mtime_t)val.i_int * 1000;
401 var_Get( p_stream, SOUT_CFG_PREFIX_IN "name", &val );
402 if( asprintf( &p_sys->psz_name, "bridge-struct-%s", val.psz_string )<0 )
404 free( val.psz_string );
405 free( p_sys );
406 return VLC_ENOMEM;
408 free( val.psz_string );
410 var_Get( p_stream, SOUT_CFG_PREFIX_IN "placeholder", &val );
411 p_sys->b_placeholder = val.b_bool;
413 var_Get( p_stream, SOUT_CFG_PREFIX_IN "placeholder-switch-on-iframe", &val);
414 p_sys->b_switch_on_iframe = val.b_bool;
416 p_sys->i_state = placeholder_on;
418 var_Get( p_stream, SOUT_CFG_PREFIX_IN "placeholder-delay", &val );
419 p_sys->i_placeholder_delay = (mtime_t)val.i_int * 1000;
421 p_sys->i_last_video = VLC_TS_INVALID;
422 p_sys->i_last_audio = VLC_TS_INVALID;
423 p_sys->id_video = NULL;
424 p_sys->id_audio = NULL;
426 p_stream->pf_add = AddIn;
427 p_stream->pf_del = DelIn;
428 p_stream->pf_send = SendIn;
430 p_stream->p_sys = (sout_stream_sys_t *)p_sys;
431 p_stream->pace_nocontrol = true;
433 return VLC_SUCCESS;
436 /*****************************************************************************
437 * CloseIn:
438 *****************************************************************************/
439 static void CloseIn( vlc_object_t * p_this )
441 sout_stream_t *p_stream = (sout_stream_t*)p_this;
442 in_sout_stream_sys_t *p_sys = (in_sout_stream_sys_t *)p_stream->p_sys;
444 free( p_sys->psz_name );
445 free( p_sys );
448 struct sout_stream_id_sys_t
450 sout_stream_id_sys_t *id;
451 enum es_format_category_e i_cat; /* es category. Used for placeholder option */
454 static sout_stream_id_sys_t * AddIn( sout_stream_t *p_stream, const es_format_t *p_fmt )
456 in_sout_stream_sys_t *p_sys = (in_sout_stream_sys_t *)p_stream->p_sys;
458 sout_stream_id_sys_t *id = malloc( sizeof( sout_stream_id_sys_t ) );
459 if( !id ) return NULL;
461 id->id = p_stream->p_next->pf_add( p_stream->p_next, p_fmt );
462 if( !id->id )
464 free( id );
465 return NULL;
468 if( p_sys->b_placeholder )
470 id->i_cat = p_fmt->i_cat;
471 switch( p_fmt->i_cat )
473 case VIDEO_ES:
474 if( p_sys->id_video != NULL )
475 msg_Err( p_stream, "We already had a video es!" );
476 p_sys->id_video = id->id;
477 break;
478 case AUDIO_ES:
479 if( p_sys->id_audio != NULL )
480 msg_Err( p_stream, "We already had an audio es!" );
481 p_sys->id_audio = id->id;
482 break;
483 default:
484 break;
488 return id;
491 static void DelIn( sout_stream_t *p_stream, sout_stream_id_sys_t *id )
493 in_sout_stream_sys_t *p_sys = (in_sout_stream_sys_t *)p_stream->p_sys;
495 if( id == p_sys->id_video ) p_sys->id_video = NULL;
496 if( id == p_sys->id_audio ) p_sys->id_audio = NULL;
498 p_stream->p_next->pf_del( p_stream->p_next, id->id );
499 free( id );
502 static int SendIn( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
503 block_t *p_buffer )
505 in_sout_stream_sys_t *p_sys = (in_sout_stream_sys_t *)p_stream->p_sys;
506 bridge_t *p_bridge;
507 bool b_no_es = true;
508 int i;
509 int i_date = mdate();
511 /* First forward the packet for our own ES */
512 if( !p_sys->b_placeholder )
513 p_stream->p_next->pf_send( p_stream->p_next, id->id, p_buffer );
515 /* Then check all bridged streams */
516 vlc_mutex_lock( &lock );
518 p_bridge = var_GetAddress( p_stream->obj.libvlc, p_sys->psz_name );
520 if( p_bridge )
522 for ( i = 0; i < p_bridge->i_es_num; i++ )
524 if ( !p_bridge->pp_es[i]->b_empty )
525 b_no_es = false;
527 while ( p_bridge->pp_es[i]->p_block != NULL
528 && (p_bridge->pp_es[i]->p_block->i_dts + p_sys->i_delay
529 < i_date
530 || p_bridge->pp_es[i]->p_block->i_dts + p_sys->i_delay
531 < p_bridge->pp_es[i]->i_last) )
533 block_t *p_block = p_bridge->pp_es[i]->p_block;
534 msg_Dbg( p_stream, "dropping a packet (%"PRId64 ")",
535 i_date - p_block->i_dts - p_sys->i_delay );
536 p_bridge->pp_es[i]->p_block
537 = p_bridge->pp_es[i]->p_block->p_next;
538 block_Release( p_block );
541 if ( p_bridge->pp_es[i]->p_block == NULL )
543 p_bridge->pp_es[i]->pp_last = &p_bridge->pp_es[i]->p_block;
546 if ( p_bridge->pp_es[i]->b_changed )
548 if ( p_bridge->pp_es[i]->b_empty && p_bridge->pp_es[i]->id != NULL )
550 p_stream->p_next->pf_del( p_stream->p_next, p_bridge->pp_es[i]->id );
552 else
554 /* We need at least two packets to enter the mux. */
555 if ( p_bridge->pp_es[i]->p_block == NULL
556 || p_bridge->pp_es[i]->p_block->p_next == NULL )
558 continue;
561 p_bridge->pp_es[i]->fmt.i_id += p_sys->i_id_offset;
562 if( !p_sys->b_placeholder )
564 p_bridge->pp_es[i]->id = p_stream->p_next->pf_add(
565 p_stream->p_next, &p_bridge->pp_es[i]->fmt );
566 if ( p_bridge->pp_es[i]->id == NULL )
568 msg_Warn( p_stream, "couldn't create chain for id %d",
569 p_bridge->pp_es[i]->fmt.i_id );
572 msg_Dbg( p_stream, "bridging in input codec=%4.4s id=%d pos=%d",
573 (char*)&p_bridge->pp_es[i]->fmt.i_codec,
574 p_bridge->pp_es[i]->fmt.i_id, i );
577 p_bridge->pp_es[i]->b_changed = false;
579 if ( p_bridge->pp_es[i]->b_empty )
580 continue;
582 if ( p_bridge->pp_es[i]->p_block == NULL )
584 if ( p_bridge->pp_es[i]->id != NULL
585 && p_bridge->pp_es[i]->i_last < i_date )
587 if( !p_sys->b_placeholder )
588 p_stream->p_next->pf_del( p_stream->p_next,
589 p_bridge->pp_es[i]->id );
590 p_bridge->pp_es[i]->fmt.i_id -= p_sys->i_id_offset;
591 p_bridge->pp_es[i]->b_changed = true;
592 p_bridge->pp_es[i]->id = NULL;
594 continue;
597 if ( p_bridge->pp_es[i]->id != NULL || p_sys->b_placeholder)
599 block_t *p_block = p_bridge->pp_es[i]->p_block;
600 while ( p_block != NULL )
602 p_bridge->pp_es[i]->i_last = p_block->i_dts;
603 p_block->i_pts += p_sys->i_delay;
604 p_block->i_dts += p_sys->i_delay;
605 p_block = p_block->p_next;
607 sout_stream_id_sys_t *newid = NULL;
608 if( p_sys->b_placeholder )
610 switch( p_bridge->pp_es[i]->fmt.i_cat )
612 case VIDEO_ES:
613 p_sys->i_last_video = i_date;
614 newid = p_sys->id_video;
615 if( !newid )
616 break;
617 if( !p_sys->b_switch_on_iframe ||
618 p_sys->i_state == placeholder_off ||
619 ( p_bridge->pp_es[i]->fmt.i_cat == VIDEO_ES &&
620 p_bridge->pp_es[i]->p_block->i_flags & BLOCK_FLAG_TYPE_I ) )
622 p_stream->p_next->pf_send( p_stream->p_next,
623 newid,
624 p_bridge->pp_es[i]->p_block );
625 p_sys->i_state = placeholder_off;
627 break;
628 case AUDIO_ES:
629 newid = p_sys->id_audio;
630 if( !newid )
631 break;
632 p_sys->i_last_audio = i_date;
633 /* fall through */
634 default:
635 p_stream->p_next->pf_send( p_stream->p_next,
636 newid?newid:p_bridge->pp_es[i]->id,
637 p_bridge->pp_es[i]->p_block );
638 break;
641 else /* !b_placeholder */
642 p_stream->p_next->pf_send( p_stream->p_next,
643 p_bridge->pp_es[i]->id,
644 p_bridge->pp_es[i]->p_block );
646 else
648 block_ChainRelease( p_bridge->pp_es[i]->p_block );
651 p_bridge->pp_es[i]->p_block = NULL;
652 p_bridge->pp_es[i]->pp_last = &p_bridge->pp_es[i]->p_block;
655 if( b_no_es )
657 for ( i = 0; i < p_bridge->i_es_num; i++ )
658 free( p_bridge->pp_es[i] );
659 free( p_bridge->pp_es );
660 free( p_bridge );
661 var_Destroy( p_stream->obj.libvlc, p_sys->psz_name );
665 if( p_sys->b_placeholder )
667 switch( id->i_cat )
669 case VIDEO_ES:
670 if( ( p_sys->i_last_video + p_sys->i_placeholder_delay < i_date
671 && ( !p_sys->b_switch_on_iframe
672 || p_buffer->i_flags & BLOCK_FLAG_TYPE_I ) )
673 || p_sys->i_state == placeholder_on )
675 p_stream->p_next->pf_send( p_stream->p_next, id->id, p_buffer );
676 p_sys->i_state = placeholder_on;
678 else
679 block_Release( p_buffer );
680 break;
682 case AUDIO_ES:
683 if( p_sys->i_last_audio + p_sys->i_placeholder_delay < i_date )
684 p_stream->p_next->pf_send( p_stream->p_next, id->id, p_buffer );
685 else
686 block_Release( p_buffer );
687 break;
689 default:
690 block_Release( p_buffer ); /* FIXME: placeholder subs anyone? */
691 break;
695 vlc_mutex_unlock( &lock );
697 return VLC_SUCCESS;