Commit 0c1a0ba9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

decoder: remove ARM-specific limitation

There are ARM servers and or HD/UHD-capable STBs. The distinction no
longer makes sense.
parent 49a0e827
......@@ -355,11 +355,7 @@ void input_DecoderDecode( decoder_t *p_dec, block_t *p_block, bool b_do_pace )
if( !p_owner->b_waiting )
block_FifoPace( p_owner->p_fifo, 10, SIZE_MAX );
}
#ifdef __arm__
else if( block_FifoSize( p_owner->p_fifo ) > 50*1024*1024 /* 50 MiB */ )
#else
else if( block_FifoSize( p_owner->p_fifo ) > 400*1024*1024 /* 400 MiB, ie ~ 50mb/s for 60s */ )
#endif
{
/* FIXME: ideally we would check the time amount of data
* in the FIFO instead of its size. */
......
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