Re: [Qemu-devel] Help debugging audio problem

2014-07-04 Thread Anshul Makkar
Use of glue is heavily uses in audio code. I completely redesigned it for Virtualbox and removed all the hard to understand glue code :) . Not sure if this glue magic is such heavily used anywhere else also. Moreover audio code uses one big monolythic big audio file audio.c . So bringing modulari

Re: [Qemu-devel] Help debugging audio problem

2014-07-03 Thread Markus Armbruster
Programmingkid writes: > What does this code mean? > > if (!glue (s->nb_hw_voices_, TYPE)) { > return NULL; > } > > The code is found in audio_template.h at line 244. > > I tried using GDB to figure out what it was doing, but had little luck. > > The AC97 sound card does not work,

[Qemu-devel] Help debugging audio problem

2014-06-12 Thread Programmingkid
What does this code mean? if (!glue (s->nb_hw_voices_, TYPE)) { return NULL; } The code is found in audio_template.h at line 244. I tried using GDB to figure out what it was doing, but had little luck. The AC97 sound card does not work, and I'm trying to change that. Any help