1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44:22 +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

@ -100,7 +100,7 @@ static bool juce_requestSelectionContent (String &selection_content, Atom select
// The selection owner will be asked to set the JUCE_SEL property on the
// juce_messageWindowHandle with the selection content
XConvertSelection (display, selection, requested_format, property_name,
XConvertSelection (display, selection, requested_format, property_name,
juce_messageWindowHandle, CurrentTime);
int timeoutMs = 200; // will wait at most for 200 ms

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