Commit 9387ebca authored by Laurent Aimar's avatar Laurent Aimar Committed by Jean-Baptiste Kempf

Do not remove track informations in DelStream for non http ASF muxing.

It fixes #3522.
(cherry picked from commit d50635dd8a26612a00453ec3a228800050dd5140)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 31ef500e
......@@ -662,7 +662,8 @@ static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
}
}
vlc_array_remove( p_sys->p_tracks, vlc_array_index_of_item( p_sys->p_tracks, (void *)tk ) );
if( p_sys->b_asf_http )
vlc_array_remove( p_sys->p_tracks, vlc_array_index_of_item( p_sys->p_tracks, (void *)tk ) );
p_sys->b_write_header = true;
......
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