All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Kővágó, Zoltán" <dirty.ice.hu@gmail.com>
Cc: qemu-devel@nongnu.org,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 02/11] audio: basic support for multi backend audio
Date: Wed, 10 Jul 2019 06:06:07 +0200	[thread overview]
Message-ID: <87ef2yy1n4.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <597ee579c3d14ff6f0892ee9e1905cdb0e0990ad.1562695780.git.DirtY.iCE.hu@gmail.com> (=?utf-8?B?IkvFkXbDoWfDsywgWm9sdMOhbiIncw==?= message of "Tue, 9 Jul 2019 20:35:42 +0200")

"Kővágó, Zoltán" <dirty.ice.hu@gmail.com> writes:

> Audio functions no longer access glob_audio_state, instead they get an
> AudioState as a parameter.  This is required in order to support
> multiple backends.
>
> glob_audio_state is also gone, and replaced with a tailq so we can store
> more than one states.
>
> Signed-off-by: Kővágó, Zoltán <DirtY.iCE.hu@gmail.com>
> ---
[...]
> diff --git a/hmp-commands.hx b/hmp-commands.hx
> index bfa5681dd2..23196da3fe 100644
> --- a/hmp-commands.hx
> +++ b/hmp-commands.hx
> @@ -819,16 +819,17 @@ ETEXI
>  
>      {
>          .name       = "wavcapture",
> -        .args_type  = "path:F,freq:i?,bits:i?,nchannels:i?",
> -        .params     = "path [frequency [bits [channels]]]",
> +        .args_type  = "path:F,freq:i?,bits:i?,nchannels:i?,audiodev:s?",
> +        .params     = "path [frequency [bits [channels [audiodev]]]]",
>          .help       = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
>          .cmd        = hmp_wavcapture,
>      },
>  STEXI
> -@item wavcapture @var{filename} [@var{frequency} [@var{bits} [@var{channels}]]]
> +@item wavcapture @var{filename} [@var{frequency} [@var{bits} [@var{channels} [@var{audiodev}]]]]
>  @findex wavcapture
> -Capture audio into @var{filename}. Using sample rate @var{frequency}
> -bits per sample @var{bits} and number of channels @var{channels}.
> +Capture audio into @var{filename} from @var{audiodev}. Using sample rate
> +@var{frequency} bits per sample @var{bits} and number of channels
> +@var{channels}.
>  
>  Defaults:
>  @itemize @minus
   @item Sample rate = 44100 Hz - CD quality
   @item Bits = 16
   @item Number of channels = 2 - Stereo
   @end itemize
   ETEXI

Defaults for the other optional arguments are listed here.  Why not for
@audiodev?

> diff --git a/qemu-options.hx b/qemu-options.hx
> index 9621e934c0..0111055aa4 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -1978,6 +1978,11 @@ can help the device and guest to keep up and not lose events in case
>  events are arriving in bulk.  Possible causes for the latter are flaky
>  network connections, or scripts for automated testing.
>  
> +@item audiodev=@var{audiodev}
> +
> +Use the specified @var{audiodev} when the VNC client requests audio
> +transmission.
> +

What's the default?

>  @end table
>  ETEXI


  reply	other threads:[~2019-07-10  4:07 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-09 18:35 [Qemu-devel] [PATCH 00/11] Multiple simultaneous audio backends Kővágó, Zoltán
2019-07-09 18:35 ` [Qemu-devel] [PATCH 01/11] audio: reduce glob_audio_state usage Kővágó, Zoltán
2019-07-10 19:59   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 02/11] audio: basic support for multi backend audio Kővágó, Zoltán
2019-07-10  4:06   ` Markus Armbruster [this message]
2019-07-10 19:37     ` Zoltán Kővágó
2019-07-11  8:58       ` Dr. David Alan Gilbert
2019-07-11 14:37       ` Markus Armbruster
2019-07-11 19:07         ` Zoltán Kővágó
2019-07-10 19:58   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 03/11] audio: add audiodev properties to frontends Kővágó, Zoltán
2019-07-10 19:58   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 04/11] audio: audiodev= parameters no longer optional when -audiodev present Kővágó, Zoltán
2019-07-10 19:30   ` Marc-André Lureau
2019-07-11 19:09     ` Zoltán Kővágó
2019-07-09 18:35 ` [Qemu-devel] [PATCH 05/11] paaudio: do not move stream when sink/source name is specified Kővágó, Zoltán
2019-07-10 19:58   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 06/11] paaudio: properly disconnect streams in fini_* Kővágó, Zoltán
2019-07-10 19:58   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 07/11] audio: remove audio_MIN, audio_MAX Kővágó, Zoltán
2019-07-10 19:58   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 08/11] audio: do not run each backend in audio_run Kővágó, Zoltán
2019-07-10 19:58   ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches Kővágó, Zoltán
2019-07-10 19:58   ` Marc-André Lureau
2019-07-14 15:21     ` Zoltán Kővágó
2019-07-09 18:35 ` [Qemu-devel] [PATCH 10/11] audio: remove read and write pcm_ops Kővágó, Zoltán
2019-07-10 19:57   ` Marc-André Lureau
2019-07-11 19:20     ` Zoltán Kővágó
2019-07-09 18:35 ` [Qemu-devel] [PATCH 11/11] audio: use size_t where makes sense Kővágó, Zoltán
2019-07-09 22:04 ` [Qemu-devel] [PATCH 00/11] Multiple simultaneous audio backends no-reply
2019-07-09 22:44 ` no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ef2yy1n4.fsf@dusky.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=dirty.ice.hu@gmail.com \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.