Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Mar 2016 09:02:33 +0000 (UTC)
From:      "Carlos J. Puga Medina" <cpm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r412161 - in head/multimedia/mpv: . files
Message-ID:  <201603300902.u2U92XUE078571@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cpm
Date: Wed Mar 30 09:02:32 2016
New Revision: 412161
URL: https://svnweb.freebsd.org/changeset/ports/412161

Log:
  - Initialize volume to 50% by default.
  
  Submitted by:	soralx@cydem.org
  Approved by:	junovitch (mentor)

Added:
  head/multimedia/mpv/files/
  head/multimedia/mpv/files/patch-audio_mixer.c   (contents, props changed)
Modified:
  head/multimedia/mpv/Makefile

Modified: head/multimedia/mpv/Makefile
==============================================================================
--- head/multimedia/mpv/Makefile	Wed Mar 30 07:30:49 2016	(r412160)
+++ head/multimedia/mpv/Makefile	Wed Mar 30 09:02:32 2016	(r412161)
@@ -4,7 +4,7 @@
 PORTNAME=	mpv
 PORTVERSION=	0.16.0
 DISTVERSIONPREFIX=	v
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	1
 CATEGORIES=	multimedia audio
 

Added: head/multimedia/mpv/files/patch-audio_mixer.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/mpv/files/patch-audio_mixer.c	Wed Mar 30 09:02:32 2016	(r412161)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603300902.u2U92XUE078571>