From b1448f584f0d90a697a1978e458729a7175c1449 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Tue, 17 Mar 2015 21:08:20 +0100 Subject: [PATCH] audio: Remove download flag from audio (fixes #1041) This should resolve the issue where Mopidy tries and download way to much of a remote track before playing it. --- mopidy/audio/actor.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index 4805e617..788fbab4 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -48,8 +48,10 @@ MB = 1 << 20 # GST_PLAY_FLAG_DEINTERLACE (1<<9) # GST_PLAY_FLAG_SOFT_COLORBALANCE (1<<10) -# Default flags to use for playbin: AUDIO, SOFT_VOLUME, DOWNLOAD -PLAYBIN_FLAGS = (1 << 1) | (1 << 4) | (1 << 7) +# Default flags to use for playbin: AUDIO, SOFT_VOLUME +# TODO: consider removing soft volume when we do multi outputs and handling it +# ourselves. +PLAYBIN_FLAGS = (1 << 1) | (1 << 4) class _Signals(object):