1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-13 00:04:19 +00:00

Fixed an MS compile problem. Added code to add an audio stream to a camera file recorded on the mac to avoid a movie rate bug in some quicktime versions. Added a linux makefile for the amalgamator.

This commit is contained in:
Julian Storer 2010-01-12 16:21:43 +00:00
parent 2343dcdcee
commit 68e04b453d
10 changed files with 291 additions and 7 deletions

View file

@ -101,7 +101,7 @@ public:
}
int getWaitHandle() const { return fd[1]; }
private:
CriticalSection lock;
OwnedArray <Message> queue;
@ -352,7 +352,7 @@ void* MessageManager::callFunctionOnMessageThread (MessageCallbackFunction* func
messageCallContext.func = func;
messageCallContext.parameter = parameter;
juce_internalMessageQueue->postMessage (new Message (MessageThreadFuncCall::uniqueID,
juce_internalMessageQueue->postMessage (new Message (MessageThreadFuncCall::uniqueID,
0, 0, &messageCallContext));
// Wait for it to complete before continuing