summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-16 17:09:08 +0200
committerwm4 <wm4@nowhere>2014-08-16 17:15:51 +0200
commit925c431ff7f68a7ea8b1fc0cd260edcf8b88fdc1 (patch)
treeb6e161b58cd714a62361e0bf3d8e9877d0352c58 /demux
parentb822faa6cfdae2c530d68f257a811c6184d237a6 (diff)
downloadmpv-925c431ff7f68a7ea8b1fc0cd260edcf8b88fdc1.tar.bz2
mpv-925c431ff7f68a7ea8b1fc0cd260edcf8b88fdc1.tar.xz
demux: enable thread by default
And change the defaults for the other queue options to reduce latency.
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/demux/demux.h b/demux/demux.h
index 2f93ec10bf..92ef461077 100644
--- a/demux/demux.h
+++ b/demux/demux.h
@@ -35,11 +35,6 @@
// and the demuxer pretends EOF was reached.
#define MAX_PACKS 16000
#define MAX_PACK_BYTES (400 * 1024 * 1024)
-// Minimum total size of packets queued - the demuxer thread will read more
-// packets, until either number or total size of the packets exceed the minimum.
-// This can actually be configured with command line options.
-#define MIN_PACKS 64
-#define MIN_PACK_BYTES (5 * 1024 * 1024)
enum demuxer_type {
DEMUXER_TYPE_GENERIC = 0,