aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorGeoffrey McRae <geoff@hostfission.com>2020-06-13 14:05:15 +1000
committerGerd Hoffmann <kraxel@redhat.com>2020-06-17 14:44:51 +0200
commitf8f0f218d4212598eab6c824754cfc40d4961ab7 (patch)
tree1cef05119331c33688a3833240fce987175e1d58 /audio
parent2f33ee08083ca540120ab572a7130f08c4d47be3 (diff)
downloadqemu-f8f0f218d4212598eab6c824754cfc40d4961ab7.zip
qemu-f8f0f218d4212598eab6c824754cfc40d4961ab7.tar.gz
qemu-f8f0f218d4212598eab6c824754cfc40d4961ab7.tar.bz2
audio/jack: remove invalid set of input support bool
Initial code for JACK did not support audio input and as such this boolean was set to let QEMU know, however JACK ended up including input support making this invalid. Further investigation shows it was invalid to set it in the first instance anyway due to a failure on my part understand properly what this was for when the audodev was initially developed. Signed-off-by: Geoffrey McRae <geoff@hostfission.com> Message-id: 20200613040518.38172-4-geoff@hostfission.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'audio')
-rw-r--r--audio/jackaudio.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/audio/jackaudio.c b/audio/jackaudio.c
index fb8efd7..58c7344 100644
--- a/audio/jackaudio.c
+++ b/audio/jackaudio.c
@@ -607,9 +607,6 @@ static int qjack_thread_creator(jack_native_thread_t *thread,
static void *qjack_init(Audiodev *dev)
{
assert(dev->driver == AUDIODEV_DRIVER_JACK);
-
- dev->u.jack.has_in = false;
-
return dev;
}