[vlc-devel] [RFC PATCHv2 03/18] input: change InputDemuxNew arguments
Thomas Guillem
thomas at gllm.fr
Tue Feb 18 17:11:16 CET 2020
In order to be able to specify an es_out_t per input_source_t.
---
src/input/input.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/input/input.c b/src/input/input.c
index 2dd0bf09821..c033cdaae91 100644
--- a/src/input/input.c
+++ b/src/input/input.c
@@ -2427,7 +2427,7 @@ InputStreamHandleAnchor( input_thread_t *p_input, input_source_t *source,
return VLC_SUCCESS;
}
-static demux_t *InputDemuxNew( input_thread_t *p_input,
+static demux_t *InputDemuxNew( input_thread_t *p_input, es_out_t *p_es_out,
input_source_t *p_source, const char *url,
const char *psz_demux, const char *psz_anchor )
{
@@ -2435,7 +2435,7 @@ static demux_t *InputDemuxNew( input_thread_t *p_input,
vlc_object_t *obj = VLC_OBJECT(p_input);
/* create the underlying access stream */
- stream_t *p_stream = stream_AccessNew( obj, p_input, priv->p_es_out,
+ stream_t *p_stream = stream_AccessNew( obj, p_input, p_es_out,
priv->b_preparsing, url );
if( p_stream == NULL )
return NULL;
@@ -2469,7 +2469,7 @@ static demux_t *InputDemuxNew( input_thread_t *p_input,
/* create a regular demux with the access stream created */
demux_t *demux = demux_NewAdvanced( obj, p_input, psz_demux, url, p_stream,
- priv->p_es_out, priv->b_preparsing );
+ p_es_out, priv->b_preparsing );
if( demux != NULL )
return demux;
@@ -2576,7 +2576,8 @@ static input_source_t *InputSourceNew( input_thread_t *p_input,
char *url;
if( likely(asprintf( &url, "%s://%s", psz_access, psz_path ) >= 0) )
{
- in->p_demux = InputDemuxNew( p_input, in, url, psz_demux, psz_anchor );
+ in->p_demux = InputDemuxNew( p_input, priv->p_es_out, in, url,
+ psz_demux, psz_anchor );
free( url );
}
else
--
2.20.1
More information about the vlc-devel
mailing list