diff options
author | Volker RĂ¼melin | 2022-03-01 20:13:04 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2022-03-04 11:05:13 +0100 |
commit | 33940dd3368f1c8b490f9aa3a762727f6b6df106 (patch) | |
tree | 0da8cd0963a218ae94e7cf562bb56738b05b2794 /audio | |
parent | audio: copy playback stream in sequential order (diff) | |
download | qemu-33940dd3368f1c8b490f9aa3a762727f6b6df106.tar.gz qemu-33940dd3368f1c8b490f9aa3a762727f6b6df106.tar.xz qemu-33940dd3368f1c8b490f9aa3a762727f6b6df106.zip |
audio: add pcm_ops function table for capture backend
Add a pcm_ops function table for the capture backend. This avoids
additional code in the next patches to test if the pcm_ops table
is available.
Signed-off-by: Volker RĂ¼melin <vr_qemu@t-online.de>
Message-Id: <20220301191311.26695-8-vr_qemu@t-online.de>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/audio.c b/audio/audio.c index 9e2d7fb209..55f885f8e9 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -1804,6 +1804,7 @@ void AUD_remove_card (QEMUSoundCard *card) g_free (card->name); } +static struct audio_pcm_ops capture_pcm_ops; CaptureVoiceOut *AUD_add_capture( AudioState *s, @@ -1849,6 +1850,7 @@ CaptureVoiceOut *AUD_add_capture( hw = &cap->hw; hw->s = s; + hw->pcm_ops = &capture_pcm_ops; QLIST_INIT (&hw->sw_head); QLIST_INIT (&cap->cb_head); |