[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 00/50] Audio 5.1 patches
From: |
Kővágó, Zoltán |
Subject: |
[Qemu-devel] [PATCH v3 00/50] Audio 5.1 patches |
Date: |
Thu, 17 Jan 2019 00:36:33 +0100 |
Hi,
Here's an updated version of my audio 5.1 patches. Bigger changes from the
previous version:
* Removed QemuOpts, use qobject_input_visitor. This also means I removed my two
OptsVisitor patches as they are no longer needed. I haven't done the input
and output option merging, I think they're better this way as we can share a
few functions between the input and output, but it has its drawbacks too with
its extra nesting, so it's still up for debate.
* Trivial qapi fixes
* MIN/MAX: Eric Blake's patches[1] should fix the osdep.h problems eventually,
so I left that out of my patch series.
Additionally, address@hidden reported some problems with the
coreaudio backend, but since I don't have a Mac I can't really test/debug it.
Any help is greatly appreciated!
Regards,
Zoltan
[1]: https://lists.gnu.org/archive/html/qemu-devel/2019-01/msg00727.html
Kővágó, Zoltán (50):
qapi: qapi for audio backends
audio: use qapi AudioFormat instead of audfmt_e
audio: -audiodev command line option: documentation
audio: -audiodev command line option basic implementation
alsaaudio: port to -audiodev config
coreaudio: port to -audiodev config
dsoundaudio: port to -audiodev config
noaudio: port to -audiodev config
ossaudio: port to -audiodev config
paaudio: port to -audiodev config
sdlaudio: port to -audiodev config
spiceaudio: port to -audiodev config
wavaudio: port to -audiodev config
audio: -audiodev command line option: cleanup
audio: reduce glob_audio_state usage
audio: basic support for multi backend audio
audio: add audiodev properties to frontends
audio: audiodev= parameters no longer optional when -audiodev present
paaudio: do not move stream when sink/source name is specified
paaudio: properly disconnect streams in fini_*
audio: remove audio_MIN, audio_MAX
audio: do not run each backend in audio_run
paaudio: fix playback glitches
audio: remove read and write pcm_ops
audio: use size_t where makes sense
audio: api for mixeng code free backends
alsaaudio: port to the new audio backend api
coreaudio: port to the new audio backend api
dsoundaudio: port to the new audio backend api
noaudio: port to the new audio backend api
ossaudio: port to the new audio backend api
paaudio: port to the new audio backend api
sdlaudio: port to the new audio backend api
spiceaudio: port to the new audio backend api
wavaudio: port to the new audio backend api
audio: remove remains of the old backend api
audio: unify input and output mixeng buffer management
audio: remove hw->samples, buffer_size_in/out pcm_ops
audio: common rate control code for timer based outputs
audio: split ctl_* functions into enable_* and volume_*
audio: add mixeng option (documentation)
audio: make mixeng optional
paaudio: get/put_buffer functions
audio: support more than two channels in volume setting
audio: replace shift in audio_pcm_info with bytes_per_frame
audio: basic support for multichannel audio
paaudio: channel-map option
usb-audio: do not count on avail bytes actually available
usb-audio: support more than two channels of audio
usbaudio: change playback counters to 64 bit
configure | 5 -
Makefile.objs | 6 +-
qapi/audio.json | 241 +++++
qapi/qapi-schema.json | 1 +
audio/audio.h | 76 +-
audio/audio_int.h | 141 +--
audio/audio_pt_int.h | 22 -
audio/audio_template.h | 112 ++-
audio/dsound_template.h | 63 +-
audio/mixeng.h | 9 +-
audio/rate_template.h | 2 +-
include/hw/qdev-properties.h | 3 +
include/sysemu/replay.h | 4 +-
ui/vnc.h | 2 +
audio/alsaaudio.c | 771 +++++----------
audio/audio.c | 1571 +++++++++++++++---------------
audio/audio_legacy.c | 548 +++++++++++
audio/audio_pt_int.c | 174 ----
audio/audio_win_int.c | 18 +-
audio/coreaudio.c | 198 ++--
audio/dsoundaudio.c | 449 +++------
audio/noaudio.c | 98 +-
audio/ossaudio.c | 608 +++++-------
audio/paaudio.c | 894 +++++++----------
audio/sdlaudio.c | 218 ++---
audio/spiceaudio.c | 286 ++----
audio/wavaudio.c | 158 +--
audio/wavcapture.c | 8 +-
hw/arm/omap2.c | 2 +-
hw/audio/ac97.c | 13 +-
hw/audio/adlib.c | 7 +-
hw/audio/cs4231a.c | 11 +-
hw/audio/es1370.c | 17 +-
hw/audio/gus.c | 9 +-
hw/audio/hda-codec.c | 35 +-
hw/audio/lm4549.c | 6 +-
hw/audio/milkymist-ac97.c | 16 +-
hw/audio/pcspk.c | 5 +-
hw/audio/pl041.c | 1 +
hw/audio/sb16.c | 17 +-
hw/audio/wm8750.c | 16 +-
hw/core/qdev-properties-system.c | 57 ++
hw/display/xlnx_dp.c | 2 +-
hw/input/tsc210x.c | 2 +-
hw/usb/dev-audio.c | 464 +++++++--
monitor.c | 12 +-
replay/replay-audio.c | 16 +-
replay/replay.c | 2 +-
ui/vnc.c | 41 +-
vl.c | 7 +-
audio/Makefile.objs | 3 +-
hmp-commands.hx | 11 +-
qemu-options.hx | 242 ++++-
53 files changed, 3985 insertions(+), 3715 deletions(-)
create mode 100644 qapi/audio.json
delete mode 100644 audio/audio_pt_int.h
create mode 100644 audio/audio_legacy.c
delete mode 100644 audio/audio_pt_int.c
--
2.20.1
- [Qemu-devel] [PATCH v3 00/50] Audio 5.1 patches,
Kővágó, Zoltán <=
- [Qemu-devel] [PATCH v3 06/50] coreaudio: port to -audiodev config, Kővágó, Zoltán, 2019/01/16
- [Qemu-devel] [PATCH v3 08/50] noaudio: port to -audiodev config, Kővágó, Zoltán, 2019/01/16
- [Qemu-devel] [PATCH v3 03/50] audio: -audiodev command line option: documentation, Kővágó, Zoltán, 2019/01/16
- [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Kővágó, Zoltán, 2019/01/16
- Re: [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Gerd Hoffmann, 2019/01/17
- Re: [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Zoltán Kővágó, 2019/01/23
- Re: [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Gerd Hoffmann, 2019/01/24
- Re: [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Gerd Hoffmann, 2019/01/24
- Re: [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Zoltán Kővágó, 2019/01/24
- Re: [Qemu-devel] [PATCH v3 15/50] audio: reduce glob_audio_state usage, Gerd Hoffmann, 2019/01/25