Commit 2ea39ff0 authored by Francois Cartegnie's avatar Francois Cartegnie

mux: avi: don't try to delete failed stream

parent b955f860
...@@ -493,6 +493,9 @@ static int Mux ( sout_mux_t *p_mux ) ...@@ -493,6 +493,9 @@ static int Mux ( sout_mux_t *p_mux )
int i_count; int i_count;
block_fifo_t *p_fifo; block_fifo_t *p_fifo;
if (!p_mux->pp_inputs[i]->p_sys)
continue;
i_stream = *((int*)p_mux->pp_inputs[i]->p_sys ); i_stream = *((int*)p_mux->pp_inputs[i]->p_sys );
p_stream = &p_sys->stream[i_stream]; p_stream = &p_sys->stream[i_stream];
......
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