From owner-svn-ports-head@freebsd.org Tue Sep 15 06:20:19 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A593E3F2137; Tue, 15 Sep 2020 06:20:19 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BrCl73wgMz4v48; Tue, 15 Sep 2020 06:20:19 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6A2EE23CF7; Tue, 15 Sep 2020 06:20:19 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08F6KJKl073427; Tue, 15 Sep 2020 06:20:19 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08F6KJjQ073425; Tue, 15 Sep 2020 06:20:19 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <202009150620.08F6KJjQ073425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Tue, 15 Sep 2020 06:20:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548703 - in head/audio/virtual_oss: . files X-SVN-Group: ports-head X-SVN-Commit-Author: hselasky X-SVN-Commit-Paths: in head/audio/virtual_oss: . files X-SVN-Commit-Revision: 548703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Sep 2020 06:20:19 -0000 Author: hselasky Date: Tue Sep 15 06:20:18 2020 New Revision: 548703 URL: https://svnweb.freebsd.org/changeset/ports/548703 Log: Lower default buffer latency in rc.d script. Approved by: pi (implicit) Modified: head/audio/virtual_oss/Makefile head/audio/virtual_oss/files/virtual_oss.in Modified: head/audio/virtual_oss/Makefile ============================================================================== --- head/audio/virtual_oss/Makefile Tue Sep 15 06:06:01 2020 (r548702) +++ head/audio/virtual_oss/Makefile Tue Sep 15 06:20:18 2020 (r548703) @@ -3,6 +3,7 @@ PORTNAME= virtual_oss PORTVERSION= 1.2.6 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \ http://home.selasky.org/distfiles/ Modified: head/audio/virtual_oss/files/virtual_oss.in ============================================================================== --- head/audio/virtual_oss/files/virtual_oss.in Tue Sep 15 06:06:01 2020 (r548702) +++ head/audio/virtual_oss/files/virtual_oss.in Tue Sep 15 06:20:18 2020 (r548703) @@ -21,7 +21,7 @@ # -i 8 # real-time priority # -r 48000 # sample rate # -b 24 # bit depth -# -s 1024 # buffer (can be 5.2ms) +# -s 8.0ms # buffer delay # -f /dev/dsp0 # hardware device to use # -d dsp # vdev to create # -t dsp.ctl # control device @@ -42,7 +42,7 @@ virtual_oss_default_args="\ -C 2 -c 2 \ -r 48000 \ -b 24 \ - -s 1024 \ + -s 8.0ms \ -f /dev/dsp0 \ -c 2 \ -d dsp \