Commit 70127d0a authored by Laurent Aimar's avatar Laurent Aimar

* input_programs.c: AddES sets default i_stream_id (make valgrind happy ;)

parent 8f735381
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management * input_programs.c: es_descriptor_t, pgrm_descriptor_t management
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2004 VideoLAN * Copyright (C) 1999-2004 VideoLAN
* $Id: input_programs.c,v 1.130 2004/01/26 21:37:58 hartman Exp $ * $Id: input_programs.c,v 1.131 2004/01/29 15:10:17 fenrir Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -617,6 +617,7 @@ es_descriptor_t * input_AddES( input_thread_t * p_input, ...@@ -617,6 +617,7 @@ es_descriptor_t * input_AddES( input_thread_t * p_input,
/* Init its values */ /* Init its values */
p_es->i_id = i_es_id; p_es->i_id = i_es_id;
p_es->i_stream_id = 0;
p_es->p_pes = NULL; p_es->p_pes = NULL;
p_es->p_dec = NULL; p_es->p_dec = NULL;
p_es->i_cat = i_category; p_es->i_cat = i_category;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment