From c6688aeddd4390c58043e3daf6832e12a0b56210 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 28 Jul 2015 21:48:13 -0300 Subject: Fix build with Quicktime after Audaspace update --- source/blender/quicktime/apple/qtkit_export.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source') diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m index 8f48f624e83..af66b0db266 100644 --- a/source/blender/quicktime/apple/qtkit_export.m +++ b/source/blender/quicktime/apple/qtkit_export.m @@ -335,8 +335,8 @@ static OSStatus AudioConverterInputCallback(AudioConverterRef inAudioConverter, qtexport->audioTotalExportedFrames += *ioNumberDataPackets; - AUD_readDevice(qtexport->audioInputDevice, (UInt8 *)qtexport->audioInputBuffer, - qtexport->audioInputFormat.mFramesPerPacket * *ioNumberDataPackets); + AUD_Device_read(qtexport->audioInputDevice, (UInt8 *)qtexport->audioInputBuffer, + qtexport->audioInputFormat.mFramesPerPacket * *ioNumberDataPackets); ioData->mBuffers[0].mDataByteSize = qtexport->audioInputFormat.mBytesPerPacket * *ioNumberDataPackets; ioData->mBuffers[0].mData = qtexport->audioInputBuffer; @@ -792,7 +792,7 @@ void end_qt(void *context_v) write_cookie(qtexport->audioConverter, qtexport->audioFile); AudioConverterDispose(qtexport->audioConverter); AudioFileClose(qtexport->audioFile); - AUD_closeReadDevice(qtexport->audioInputDevice); + AUD_Device_free(qtexport->audioInputDevice); qtexport->audioFile = NULL; qtexport->audioInputDevice = NULL; MEM_freeN(qtexport->audioInputBuffer); -- cgit v1.2.3