diff options
| author | Peter Maydell | 2020-02-07 14:42:09 +0100 |
|---|---|---|
| committer | Peter Maydell | 2020-02-07 14:42:09 +0100 |
| commit | b6bef1147f0f4edb7d8aac1e26d9511898ae854d (patch) | |
| tree | ccacabee62a6fab86ec0a92386eba3fee33fb849 /qapi | |
| parent | Merge remote-tracking branch 'remotes/awilliam/tags/vfio-update-20200206.0' i... (diff) | |
| parent | audio: proper support for float samples in mixeng (diff) | |
| download | qemu-b6bef1147f0f4edb7d8aac1e26d9511898ae854d.tar.gz qemu-b6bef1147f0f4edb7d8aac1e26d9511898ae854d.tar.xz qemu-b6bef1147f0f4edb7d8aac1e26d9511898ae854d.zip | |
Merge remote-tracking branch 'remotes/kraxel/tags/audio-20200207-pull-request' into staging
audio: bugfixes, mostly audio backend rewrite fallout
# gpg: Signature made Fri 07 Feb 2020 07:45:44 GMT
# gpg: using RSA key 4CB6D8EED3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" [full]
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>" [full]
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>" [full]
# Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138
* remotes/kraxel/tags/audio-20200207-pull-request:
audio: proper support for float samples in mixeng
coreaudio: fix coreaudio playback
audio/dsound: fix invalid parameters error
audio: audio_generic_get_buffer_in should honor *size
ossaudio: disable poll mode can't be reached
ossaudio: prevent SIGSEGV in oss_enable_out
audio: fix bug 1858488
audio: prevent SIGSEGV in AUD_get_buffer_size_out
paaudio: remove unused variables
audio: fix audio_generic_read
audio: fix audio_generic_write
audio/oss: fix buffer pos calculation
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'qapi')
| -rw-r--r-- | qapi/audio.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/audio.json b/qapi/audio.json index 83312b2339..d8c507cced 100644 --- a/qapi/audio.json +++ b/qapi/audio.json @@ -276,7 +276,7 @@ # Since: 4.0 ## { 'enum': 'AudioFormat', - 'data': [ 'u8', 's8', 'u16', 's16', 'u32', 's32' ] } + 'data': [ 'u8', 's8', 'u16', 's16', 'u32', 's32', 'f32' ] } ## # @AudiodevDriver: |
