Commit 2120e79e authored by Laurent Aimar's avatar Laurent Aimar

* avi.c: fixed fps computation, thanks markfm for testing.

parent b5416929
......@@ -421,7 +421,7 @@ static int Mux ( sout_mux_t *p_mux )
p_fifo = p_mux->pp_inputs[i]->p_fifo;
i_count = p_fifo->i_depth;
while( i_count > 0 )
while( i_count > 1 )
{
avi_idx1_entry_t *p_idx;
block_t *p_data;
......
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