Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example-videoRenderer/config.make
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ OF_ROOT = ../../..
# for example search paths like:
# USER_CFLAGS = -I src/objects

USER_CFLAGS =
USER_CFLAGS = -DTIMELINE_VIDEO_INCLUDED


# USER_LDFLAGS allows to pass custom flags to the linker
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@

#if defined (TARGET_WIN32) || defined (TARGET_OSX)
#include "ofOpenALSoundPlayer_TimelineAdditions.h"

//#ifdef OF_SOUND_PLAYER_OPENAL
Expand Down Expand Up @@ -1094,4 +1096,4 @@ void ofOpenALSoundPlayer_TimelineAdditions::runWindow(vector<float> & signal){
signal[i] *= window[i];
}

//#endif
#endif
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once
#if defined (TARGET_WIN32) || defined (TARGET_OSX)

#include "ofConstants.h"

Expand Down Expand Up @@ -204,3 +205,4 @@ class ofOpenALSoundPlayer_TimelineAdditions : public ofBaseSoundPlayer, public o
float justSetTime;
};

#endif