From 145fbc254ffcc6e6819e0c3d31278cf4b009c9b3 Mon Sep 17 00:00:00 2001 From: arturo Date: Thu, 21 Jul 2011 17:16:41 +0200 Subject: [PATCH 1/2] ofSoundStream: missing include --- libs/openFrameworks/sound/ofSoundStream.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/openFrameworks/sound/ofSoundStream.h b/libs/openFrameworks/sound/ofSoundStream.h index 35a184fce79..30e53d2334a 100644 --- a/libs/openFrameworks/sound/ofSoundStream.h +++ b/libs/openFrameworks/sound/ofSoundStream.h @@ -4,6 +4,7 @@ #include "ofBaseTypes.h" #include "ofBaseApp.h" #include "ofTypes.h" +#include "ofBaseSoundStream.h" #ifdef OF_SOUNDSTREAM_RTAUDIO #include "ofRtAudioSoundStream.h" From c6b4be7353478fc91da53e69b4bcbdae143d5b14 Mon Sep 17 00:00:00 2001 From: arturo Date: Thu, 21 Jul 2011 17:53:23 +0200 Subject: [PATCH 2/2] fix iphone videoplayer constant --- libs/openFrameworks/utils/ofConstants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/openFrameworks/utils/ofConstants.h b/libs/openFrameworks/utils/ofConstants.h index 0a31b369877..0a84bfe405f 100644 --- a/libs/openFrameworks/utils/ofConstants.h +++ b/libs/openFrameworks/utils/ofConstants.h @@ -205,7 +205,7 @@ typedef TESSindex ofIndexType; //------------------------------------------------ video player // check if any video player system is already defined from the compiler -#if !defined(OF_VIDEO_PLAYER_GSTREAMER) && !defined(OF_VIDEO_CAPTURE_IPHONE) && !defined(OF_VIDEO_PLAYER_QUICKTIME) +#if !defined(OF_VIDEO_PLAYER_GSTREAMER) && !defined(OF_VIDEO_PLAYER_IPHONE) && !defined(OF_VIDEO_PLAYER_QUICKTIME) #ifdef TARGET_LINUX #define OF_VIDEO_PLAYER_GSTREAMER #else