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);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to