vitaaudio: Clean up correctly in CloseDevice.
parent
9fa4a6ef87
commit
107fd941cd
|
@ -148,25 +148,29 @@ static void VITAAUD_WaitDevice(SDL_AudioDevice *device)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Uint8 *VITAAUD_GetDeviceBuf(SDL_AudioDevice *device)
|
static Uint8 *VITAAUD_GetDeviceBuf(SDL_AudioDevice *device, int *buffer_size)
|
||||||
{
|
{
|
||||||
return device->hidden->mixbufs[device->hidden->next_buffer];
|
return device->hidden->mixbufs[device->hidden->next_buffer];
|
||||||
}
|
}
|
||||||
|
|
||||||
static void VITAAUD_CloseDevice(SDL_AudioDevice *device)
|
static void VITAAUD_CloseDevice(SDL_AudioDevice *device)
|
||||||
{
|
{
|
||||||
if (device->hidden->port >= 0) {
|
if (device->hidden) {
|
||||||
if (device->iscapture) {
|
if (device->hidden->port >= 0) {
|
||||||
sceAudioInReleasePort(device->hidden->port);
|
if (device->iscapture) {
|
||||||
} else {
|
sceAudioInReleasePort(device->hidden->port);
|
||||||
sceAudioOutReleasePort(device->hidden->port);
|
} else {
|
||||||
|
sceAudioOutReleasePort(device->hidden->port);
|
||||||
|
}
|
||||||
|
device->hidden->port = -1;
|
||||||
}
|
}
|
||||||
device->hidden->port = -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!device->iscapture && device->hidden->rawbuf != NULL) {
|
if (!device->iscapture && device->hidden->rawbuf != NULL) {
|
||||||
SDL_aligned_free(device->hidden->rawbuf);
|
SDL_aligned_free(device->hidden->rawbuf); // this uses memalign(), not SDL_malloc().
|
||||||
device->hidden->rawbuf = NULL;
|
device->hidden->rawbuf = NULL;
|
||||||
|
}
|
||||||
|
SDL_free(device->hidden);
|
||||||
|
device->hidden = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue