[Bf-blender-cvs] [c6688aed] master: Fix build with Quicktime after Audaspace update

Dalai Felinto noreply at git.blender.org
Wed Jul 29 02:49:47 CEST 2015


Commit: c6688aeddd4390c58043e3daf6832e12a0b56210
Author: Dalai Felinto
Date:   Tue Jul 28 21:48:13 2015 -0300
Branches: master
https://developer.blender.org/rBc6688aeddd4390c58043e3daf6832e12a0b56210

Fix build with Quicktime after Audaspace update

===================================================================

M	source/blender/quicktime/apple/qtkit_export.m

===================================================================

diff --git a/source/blender/quicktime/apple/qtkit_export.m b/source/blender/quicktime/apple/qtkit_export.m
index 8f48f62..af66b0d 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);




More information about the Bf-blender-cvs mailing list