From owner-cvs-ports@FreeBSD.ORG Mon May 8 16:05:18 2006 Return-Path: X-Original-To: cvs-ports@FreeBSD.org Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03A8116A565; Mon, 8 May 2006 16:05:17 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96EE043D45; Mon, 8 May 2006 16:05:17 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k48G5Hkm081071; Mon, 8 May 2006 16:05:17 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k48G5HgT081070; Mon, 8 May 2006 16:05:17 GMT (envelope-from pav) Message-Id: <200605081605.k48G5HgT081070@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 8 May 2006 16:05:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio Makefile ports/audio/libjackasyn Makefile distinfo pkg-descr pkg-plist ports/audio/libjackasyn/files patch-Makefile.in patch-configure patch-libjackasyn.c patch-libjackoss.c patch-libjackoss.h pkg-message.in X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 May 2006 16:05:18 -0000 pav 2006-05-08 16:05:17 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/libjackasyn Makefile distinfo pkg-descr pkg-plist audio/libjackasyn/files patch-Makefile.in patch-configure patch-libjackasyn.c patch-libjackoss.c patch-libjackoss.h pkg-message.in Log: libjackasyn is a library that allows you to use programs written for the OSS sound API with the JACK audio server (jackit.sf.net). libjackasyn is a library that can be used for two purposes. First it can be loaded via the LD_PRELOAD variable, turning OSS applications automatically into JACK-aware applications. Second, it can be used to link against the program during build time, making it trivial to turn an OSS aware sound application into a JACK aware sound application in a short time. libjackasyn got its name from the asynchronous manner in which it communicates with the JACK server, which means by using libjackasyn you will introduce an additional delay exactly the size of one JACK audiobuffer (1024 samples or 44 ms with the JACK default settings). This delay can be reduced by reducing the JACK buffersize. It should not matter for sound generating applications, but it might introduce phasing effects when doing sound processing. WWW: http://gige.xdv.org/libjackasyn/ PR: ports/94290 Submitted by: Jose Alonso Cardenas Marquez Revision Changes Path 1.723 +1 -0 ports/audio/Makefile 1.1 +52 -0 ports/audio/libjackasyn/Makefile (new) 1.1 +3 -0 ports/audio/libjackasyn/distinfo (new) 1.1 +38 -0 ports/audio/libjackasyn/files/patch-Makefile.in (new) 1.1 +20 -0 ports/audio/libjackasyn/files/patch-configure (new) 1.1 +22 -0 ports/audio/libjackasyn/files/patch-libjackasyn.c (new) 1.1 +26 -0 ports/audio/libjackasyn/files/patch-libjackoss.c (new) 1.1 +23 -0 ports/audio/libjackasyn/files/patch-libjackoss.h (new) 1.1 +35 -0 ports/audio/libjackasyn/files/pkg-message.in (new) 1.1 +19 -0 ports/audio/libjackasyn/pkg-descr (new) 1.1 +5 -0 ports/audio/libjackasyn/pkg-plist (new)