Commit d65f4002 authored by Gildas Bazin's avatar Gildas Bazin

* modules/mux/asf.c: fixed a bug I introduced in my last commit.

parent 0127941f
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
* $Id$ * $Id$
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
...@@ -323,7 +324,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -323,7 +324,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
} }
tk = p_input->p_sys = &p_sys->track[p_sys->i_track]; tk = p_input->p_sys = &p_sys->track[p_sys->i_track];
tk->i_id = p_sys->i_track; tk->i_id = p_sys->i_track + 1;
tk->i_cat = p_input->p_fmt->i_cat; tk->i_cat = p_input->p_fmt->i_cat;
tk->i_sequence = 0; tk->i_sequence = 0;
......
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