summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--multimedia/mpv/Makefile2
-rw-r--r--multimedia/mpv/files/patch-audio_mixer.c13
2 files changed, 14 insertions, 1 deletions
diff --git a/multimedia/mpv/Makefile b/multimedia/mpv/Makefile
index 0b2eb3168497..339cf0db2506 100644
--- a/multimedia/mpv/Makefile
+++ b/multimedia/mpv/Makefile
@@ -4,7 +4,7 @@
PORTNAME= mpv
PORTVERSION= 0.16.0
DISTVERSIONPREFIX= v
-PORTREVISION= 1
+PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= multimedia audio
diff --git a/multimedia/mpv/files/patch-audio_mixer.c b/multimedia/mpv/files/patch-audio_mixer.c
new file mode 100644
index 000000000000..15d7b2681133
--- /dev/null
+++ b/multimedia/mpv/files/patch-audio_mixer.c
@@ -0,0 +1,13 @@
+--- audio/mixer.c.orig 2016-03-29 14:12:22 UTC
++++ audio/mixer.c
+@@ -57,8 +57,8 @@ struct mixer *mixer_init(void *talloc_ct
+ *mixer = (struct mixer) {
+ .log = mp_log_new(mixer, global->log, "mixer"),
+ .opts = global->opts,
+- .vol_l = 100,
+- .vol_r = 100,
++ .vol_l = -1,
++ .vol_r = -1,
+ .driver = "",
+ };
+ return mixer;