]> git.proxmox.com Git - mirror_qemu.git/commitdiff
audio: Require AudioState in AUD_add_capture
authorMartin Kletzander <mkletzan@redhat.com>
Mon, 25 Apr 2022 08:21:57 +0000 (10:21 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 3 Oct 2023 08:29:39 +0000 (10:29 +0200)
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>
audio/audio.c

index 2f4796571179409585d9841cf2e0e2e82b3c2448..d4387cb3e21fc1e5419eb5c1b493a81513a8aa02 100644 (file)
@@ -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) {