Commit e8aa9207 authored by Laurent Aimar's avatar Laurent Aimar

Do not pre-buffer too much, it has side effects with the current es_out code.

At least, ES track switching became really slow (the data for the associated
ES are not buffered as the decoder is not present).
parent 6186747b
......@@ -95,7 +95,9 @@
* It is 60s max, remember as it is limited by the size it takes by es_out.c
* it can be really large.
*/
#define CR_BUFFERING_TARGET (60000000)
//#define CR_BUFFERING_TARGET (60000000)
/* Due to some problems in es_out, we cannot use a large value yet */
#define CR_BUFFERING_TARGET (100000)
/*****************************************************************************
* Structures
......
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