Statistics
| Branch: | Revision:

root / audio @ c09015dd

Name Size
alsaaudio.c 32.5 kB
audio.c 50.7 kB
audio.h 4.9 kB
audio_int.h 7 kB
audio_pt_int.c 3.9 kB
audio_pt_int.h 681 Bytes
audio_template.h 13 kB
audio_win_int.c 2.3 kB
audio_win_int.h 308 Bytes
coreaudio.c 15.3 kB
dsound_template.h 7.1 kB
dsoundaudio.c 25.2 kB
esdaudio.c 13.4 kB
fmodaudio.c 16.9 kB
mixeng.c 9 kB
mixeng.h 2.2 kB
mixeng_template.h 3.8 kB
noaudio.c 4.6 kB
ossaudio.c 23.9 kB
paaudio.c 11.5 kB
rate_template.h 3.2 kB
sdlaudio.c 10.4 kB
spiceaudio.c 9 kB
wavaudio.c 7.8 kB
wavcapture.c 5 kB
winwaveaudio.c 17.4 kB

Latest revisions

# Date Author Comment
e7d81004 12/14/2011 01:09 pm Stefan Weil

Fix spelling in comments, documentation and messages

accidently->accidentally
annother->another
choosen->chosen
consideres->considers
decriptor->descriptor
developement->development
paramter->parameter
preceed->precede
preceeding->preceding
priviledge->privilege...

15d4a723 11/18/2011 07:55 pm Stefan Weil

fmodaudio: Remove unused variable 'bits16' (reported by cppcheck)

The variable is assigned a value which is never used,
so remove variable and assignment.

Signed-off-by: Stefan Weil <>
Signed-off-by: malc <>

7f67d892 09/20/2011 11:16 pm Anthony Liguori

Merge remote-tracking branch 'qmp/queue/qmp' into staging

27acf660 09/20/2011 04:55 pm Juan Quintela

wavaudio: Use stdio instead of QEMUFile

QEMUFile * is only intended for migration nowadays. Using it for
anything else just adds pain and a layer of buffers for no good
reason.

Signed-off-by: Juan Quintela <>
CC: malc <>...

b04df2a4 09/20/2011 04:50 pm Juan Quintela

wavcapture: Use stdio instead of QEMUFile

QEMUFile * is only intended for migration nowadays. Using it for
anything else just adds pain and a layer of buffers for no good
reason.

Signed-off-by: Juan Quintela <>
CC: malc <>...

1dfb4dd9 09/15/2011 10:39 pm Luiz Capitulino

Replace the VMSTOP macros with a proper state type

Today, when notifying a VM state change with vm_state_notify(),
we pass a VMSTOP macro as the 'reason' argument. This is not ideal
because the VMSTOP macros tell why qemu stopped and not exactly
what the current VM state is....

7267c094 08/21/2011 07:01 am Anthony Liguori

Use glib memory allocation and free functions

qemu_malloc/qemu_free no longer exist after this commit.

Signed-off-by: Anthony Liguori <>

744d3644 06/23/2011 05:56 pm Andreas Färber

coreaudio: Fix OSStatus format specifier

OSStatus type is defined as SInt32. That's signed int on LP64 and
signed long otherwise.
Since it is an explicit 32-bit-width type, cast to corresponsing POSIX type
and use PRId32 format specifier. This avoids a warning on ppc64....

cbc36cb0 06/23/2011 05:56 pm Andreas Färber

coreaudio: Avoid formatting UInt32 type

coreaudioVoiceOut's audioDevicePropertyBufferFrameSize is defined as UInt32
and is being used by reference for AudioDevice{Get,Set}Property().
UInt32 is unsigned int on LP64 but unsigned long otherwise.

Cast to POSIX type and use PRIu32 format specifier to hide the details....

d9cbb0f3 06/14/2011 04:08 am Alexandre Raymond

Fix compilation warning due to incorrectly specified type

In audio/coreaudio.c, a variable named "str" was assigned "const char" values,
which resulted in the following warnings:

-----8<-----
audio/coreaudio.c: In function ‘coreaudio_logstatus’:
audio/coreaudio.c:59: warning: initialization discards qualifiers from pointer target type...

View revisions

Also available in: Atom