From patchwork Thu Aug 6 18:28:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?UTF-8?B?Wm9sdMOhbiBLxZF2w6Fnw7M=?= X-Patchwork-Id: 504935 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B19741402A7 for ; Fri, 7 Aug 2015 08:09:41 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=ZXO8kYfd; dkim-atps=neutral Received: from localhost ([::1]:46937 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNTM3-0008PO-Rr for incoming@patchwork.ozlabs.org; Thu, 06 Aug 2015 18:09:39 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48922) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNPu9-00081X-5z for qemu-devel@nongnu.org; Thu, 06 Aug 2015 14:28:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZNPu2-00017v-Cd for qemu-devel@nongnu.org; Thu, 06 Aug 2015 14:28:34 -0400 Received: from mail-wi0-x22b.google.com ([2a00:1450:400c:c05::22b]:38165) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNPu2-000173-1c for qemu-devel@nongnu.org; Thu, 06 Aug 2015 14:28:30 -0400 Received: by wibxm9 with SMTP id xm9so35660505wib.1 for ; Thu, 06 Aug 2015 11:28:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=gNmb79M1DNlN4YwJp91rSXquseo6v5JdK2FnOwJO8d4=; b=ZXO8kYfd9BeTDLo1bZvreWKtro9IGj8fjKFW2T8nMOglMEQlKzBJqtzgxSDXMMIfKT S+4Ef3OgCJRheJ9uWCjy91hqpkDUZ+LBGe1Rk124hVCd1Bm3vPRy+YUAz4OlHBQr4eCX vF6tV9HwGZP5TDlMCSDuot+ISrnM+1dvVrgNX+U5EhDIna30yn0fLiS789uQ4KhIaiEW +Mv0RU59Fo4KrSjMzf106qMgOQratB+VDsDCupsclZK/8Q19Q1P79FLUVDdv8ktpbFwq PJzHXbaIRV7ilu/kDSautIpZ7D5TdDNGJ02kaWCwizo1BigUupBEDxLev3qsIK3v8AtN Q4gA== X-Received: by 10.180.86.129 with SMTP id p1mr8638194wiz.71.1438885708264; Thu, 06 Aug 2015 11:28:28 -0700 (PDT) Received: from nullptr.home.dirty-ice.org (84-236-21-48.pool.digikabel.hu. [84.236.21.48]) by smtp.gmail.com with ESMTPSA id i6sm10726509wje.33.2015.08.06.11.28.26 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 06 Aug 2015 11:28:27 -0700 (PDT) From: "=?UTF-8?q?K=C5=91v=C3=A1g=C3=B3=2C=20Zolt=C3=A1n?=" X-Google-Original-From: =?UTF-8?q?K=C5=91v=C3=A1g=C3=B3=2C=20Zolt=C3=A1n?= To: qemu-devel@nongnu.org Date: Thu, 6 Aug 2015 20:28:19 +0200 Message-Id: X-Mailer: git-send-email 2.4.5 In-Reply-To: References: MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::22b Cc: Gerd Hoffmann , Markus Armbruster Subject: [Qemu-devel] [PATCH 07/25] qapi: qapi for audio backends X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This patch adds structures into qapi to replace the existing configuration structures used by audio backends currently. This qapi will be the base of the -audiodev command line parameter (that replaces the old environment variables based config). This is not a 1:1 translation of the old options, I've tried to make them much more consistent (e.g. almost every backend had an option to specify buffer size, but the name was different for every backend, and some backends required usecs, while some other required frames, samples or bytes). Also tried to reduce the number of abbreviations used by the config keys. Some of the more important changes: * use `in` and `out` instead of `ADC` and `DAC`, as the former is more user friendly imho * moved buffer settings into the global setting area (so it's the same for all backends that support it. Backends that can't change buffer size will simply ignore them). Also using usecs, as it's probably more user friendly than samples or bytes. * try-poll is now an alsa backend specific option (as all other backends currently ignore it) Signed-off-by: Kővágó, Zoltán --- Makefile | 4 +- qapi-schema.json | 3 + qapi/audio.json | 263 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 268 insertions(+), 2 deletions(-) create mode 100644 qapi/audio.json diff --git a/Makefile b/Makefile index 340d9c8..bdd0bc6 100644 --- a/Makefile +++ b/Makefile @@ -262,8 +262,8 @@ $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) " GEN $@") qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \ - $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \ - $(SRC_PATH)/qapi/event.json + $(SRC_PATH)/qapi/audio.json $(SRC_PATH)/qapi/block.json \ + $(SRC_PATH)/qapi/block-core.json $(SRC_PATH)/qapi/event.json qapi-types.c qapi-types.h :\ $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) diff --git a/qapi-schema.json b/qapi-schema.json index c9d9263..e9cbe15 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -5,6 +5,9 @@ # QAPI common definitions { 'include': 'qapi/common.json' } +# QAPI audio definitions +{ 'include': 'qapi/audio.json' } + # QAPI block definitions { 'include': 'qapi/block.json' } diff --git a/qapi/audio.json b/qapi/audio.json new file mode 100644 index 0000000..b57b215 --- /dev/null +++ b/qapi/audio.json @@ -0,0 +1,263 @@ +# -*- mode: python -*- +# +# Copyright (C) 2015 Zoltán Kővágó +# +# This work is licensed under the terms of the GNU GPL, version 2 or later. +# See the COPYING file in the top-level directory. + +## +# @AudiodevNoOptions +# +# The none, coreaudio, sdl and spice audio backend have no options. +# +# Since: 2.5 +## +{ 'struct': 'AudiodevNoOptions', + 'data': { } } + +## +# @AudiodevAlsaPerDirectionOptions +# +# Options of the alsa backend that are used for both playback and recording. +# +# @dev: #optional the name of the alsa device to use (default 'default') +# +# @try-poll: #optional attempt to use poll mode, falling back to non polling +# access on failure (default on) +# +# Since: 2.5 +## +{ 'struct': 'AudiodevAlsaPerDirectionOptions', + 'data': { + '*dev': 'str', + '*try-poll': 'bool' } } + +## +# @AudiodevAlsaOptions +# +# Options of the alsa audio backend. +# +# @alsa-in: options of the capture stream +# +# @alsa-out: options of the playback stream +# +# @threshold: #optional set the threshold (in microsecods) when playback starts +# +# Since: 2.5 +## +{ 'struct': 'AudiodevAlsaOptions', + 'data': { + 'alsa-in': 'AudiodevAlsaPerDirectionOptions', + 'alsa-out': 'AudiodevAlsaPerDirectionOptions', + '*threshold': 'int' } } + +## +# @AudiodevDsoundOptions +# +# Options of the dsound audio backend. +# +# @latency: #optional add extra latency to playback in microseconds (default +# 10000) +# +# Since: 2.5 +## +{ 'struct': 'AudiodevDsoundOptions', + 'data': { + '*latency': 'int' } } + +## +# @AudiodevOssPerDirectionOptions +# +# Options of the oss backend that are used for both playback and recording. +# +# @dev: #optional file name of the oss device (default '/dev/dsp') +# +# @try-poll: #optional attempt to use poll mode, falling back to non polling +# access on failure (default on) +# +# Since: 2.5 +## +{ 'struct': 'AudiodevOssPerDirectionOptions', + 'data': { + '*dev': 'str', + '*try-poll': 'bool' } } + +## +# @AudiodevOssOptions +# +# Options of the oss audio backend. +# +# @oss-in: options of the capture stream +# +# @oss-out: options of the playback stream +# +# @try-mmap: #optional try using memory mapped access, falling back to non +# memory mapped access on failure (default off) +# +# @exclusive: #optional open device in exclusive mode (vmix won't work) +# (default off) +# +# @dsp-policy: #optional set the timing policy of the device (between 0 and 10, +# where smaller number means smaller latency but higher CPU usage) +# or -1 to use fragment mode (option ignored on some platforms) +# (default 5) +# +# Since: 2.5 +## +{ 'struct': 'AudiodevOssOptions', + 'data': { + 'oss-in': 'AudiodevOssPerDirectionOptions', + 'oss-out': 'AudiodevOssPerDirectionOptions', + '*try-mmap': 'bool', + '*exclusive': 'bool', + '*dsp-policy': 'int' } } + +## +# @AudiodevPaPerDirectionOptions +# +# Options of the pa backend that are used for both playback and recording. +# +# @name: #optional name of the sink/source to use +# +# Since: 2.5 +## +{ 'struct': 'AudiodevPaPerDirectionOptions', + 'data': { + '*name': 'str' } } + +## +# @AudiodevPaOptions +# +# Options of the pa (PulseAudio) audio backend. +# +# @server: #optional PulseAudio server address (default: let PulseAudio choose) +# +# @sink: sink specific options +# +# @source: source specific options +# +# Since: 2.5 +## +{ 'struct': 'AudiodevPaOptions', + 'data': { + '*server': 'str', + 'sink': 'AudiodevPaPerDirectionOptions', + 'source': 'AudiodevPaPerDirectionOptions' } } + +## +# @AudiodevWavOptions +# +# Options of the wav audio backend. +# +# @path: #optional name of the wav file to record (default 'qemu.wav') +# +# Since: 2.5 +## +{ 'struct': 'AudiodevWavOptions', + 'data': { + '*path': 'str' } } + + +## +# @AudioFormat +# +# An enumeration of possible audio formats. +# +# Since: 2.5 +## +{ 'enum': 'AudioFormat', + 'data': [ 'u8', 's8', 'u16', 's16', 'u32', 's32' ] } + +## +# @AudiodevDriver +# +# An enumeration of possible audio backend drivers. +# +# Since: 2.5 +## +{ 'enum': 'AudiodevDriver', + 'data': [ 'none', 'alsa', 'coreaudio', 'dsound', 'oss', 'pa', 'sdl', 'spice', + 'wav' ] } + +## +# @AudiodevPerDirectionOptions +# +# General audio backend options that are used for both playback and recording. +# +# @fixed-settings: #optional use fixed settings for host input/output. When +# off, frequency, channels and format must not be specified +# (default on) +# +# @frequency: #optional frequency to use when using fixed settings +# (default 44100) +# +# @channels: #optional number of channels when using fixed settings +# (default 2) +# +# @voices: #optional number of voices to use (default 1) +# +# @format: #optional sample format to use when using fixed settings +# (default s16) +# +# @buffer-len: #optional the buffer size in microseconds +# +# @buffer-count: #optional number of buffers +# +# Since: 2.5 +## +{ 'struct': 'AudiodevPerDirectionOptions', + 'data': { + '*fixed-settings': 'bool', + '*frequency': 'int', + '*channels': 'int', + '*voices': 'int', + '*format': 'AudioFormat', + '*buffer-len': 'int', + '*buffer-count': 'int' } } + +## +# @AudiodevCommonOptions +# +# Captures the common configuration of an audio backend. +# +# @id: identifier of the backend +# +# @driver: the backend driver to use +# +# @in: options of the capture stream +# +# @out: options of the playback stream +# +# @timer-period: #optional timer period (in microseconds, 0: use lowest +# possible) +# +# Since: 2.5 +## +{ 'struct': 'AudiodevCommonOptions', + 'data': { + 'id': 'str', + 'driver': 'AudiodevDriver', + 'in': 'AudiodevPerDirectionOptions', + 'out': 'AudiodevPerDirectionOptions', + '*timer-period': 'int' } } + +## +# @AudiodevBackendOptions +# +# Options of an audio backend. +# +# Since: 2.5 +## +{ 'union': 'Audiodev', + 'base': 'AudiodevCommonOptions', + 'discriminator': 'driver', + 'data': { + 'none': 'AudiodevNoOptions', + 'alsa': 'AudiodevAlsaOptions', + 'coreaudio': 'AudiodevNoOptions', + 'dsound': 'AudiodevDsoundOptions', + 'oss': 'AudiodevOssOptions', + 'pa': 'AudiodevPaOptions', + 'sdl': 'AudiodevNoOptions', + 'spice': 'AudiodevNoOptions', + 'wav': 'AudiodevWavOptions' } }