Skip to content
Snippets Groups Projects
Commit e2c7381b authored by Ilkka Ollakka's avatar Ilkka Ollakka
Browse files

Revert "sout: Don't wait until all the es has atleast minimum amount of blocks in fifo"

This reverts commit 57b356e2.
parent 944d96f7
No related branches found
No related tags found
No related merge requests found
......@@ -559,7 +559,14 @@ int sout_MuxGetStream( sout_mux_t *p_mux, unsigned i_blocks, mtime_t *pi_dts )
block_t *p_data;
if( block_FifoCount( p_input->p_fifo ) < i_blocks )
{
if( p_input->p_fmt->i_cat != SPU_ES )
{
return -1;
}
/* FIXME: SPU muxing */
continue;
}
p_data = block_FifoShow( p_input->p_fifo );
if( i_stream < 0 || p_data->i_dts < i_dts )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment