aboutsummaryrefslogtreecommitdiff
path: root/audio/audio.c
diff options
context:
space:
mode:
authorMartin Kletzander <mkletzan@redhat.com>2022-04-25 10:21:57 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2023-10-03 10:29:39 +0200
commitaaa6a6f93dc88f9201b9872fa64a565d52628208 (patch)
tree1abec218f41a3e2b0955e02dbbbb8f219c91acbf /audio/audio.c
parent9e58d7a7561ace2e4ed62049f9d0ff488e1bb7f1 (diff)
downloadqemu-aaa6a6f93dc88f9201b9872fa64a565d52628208.zip
qemu-aaa6a6f93dc88f9201b9872fa64a565d52628208.tar.gz
qemu-aaa6a6f93dc88f9201b9872fa64a565d52628208.tar.bz2
audio: Require AudioState in AUD_add_capture
Since all callers require a valid audiodev this function can now safely abort in case of missing AudioState. Signed-off-by: Martin Kletzander <mkletzan@redhat.com> Message-ID: <c6e87e678e914df0f59da2145c2753cdb4a16f63.1650874791.git.mkletzan@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'audio/audio.c')
-rw-r--r--audio/audio.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/audio/audio.c b/audio/audio.c
index 2f47965..d4387cb 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -1876,10 +1876,8 @@ CaptureVoiceOut *AUD_add_capture(
struct capture_callback *cb;
if (!s) {
- if (!legacy_config) {
- dolog("Capturing without setting an audiodev is deprecated\n");
- }
- s = audio_init(NULL, NULL);
+ error_report("Capturing without setting an audiodev is not supported");
+ abort();
}
if (!audio_get_pdo_out(s->dev)->mixing_engine) {