From 8e341c1b5043f4d8244a56bbb9a6cdfee3f29ca4 Mon Sep 17 00:00:00 2001 From: Dimitri Diakopoulos Date: Thu, 21 May 2015 20:12:51 -0700 Subject: [PATCH] move internal header files to cpp --- include/libnyquist/OpusDecoder.h | 1 - include/libnyquist/VorbisDecoder.h | 1 - libnyquist.xcodeproj/project.pbxproj | 2 +- src/OpusDecoder.cpp | 1 + src/VorbisDecoder.cpp | 1 + 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/libnyquist/OpusDecoder.h b/include/libnyquist/OpusDecoder.h index d546e6c..c7bb354 100644 --- a/include/libnyquist/OpusDecoder.h +++ b/include/libnyquist/OpusDecoder.h @@ -27,7 +27,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #define OPUS_DECODER_H #include "AudioDecoder.h" -#include "opus/opusfile/include/opusfile.h" namespace nqr { diff --git a/include/libnyquist/VorbisDecoder.h b/include/libnyquist/VorbisDecoder.h index 99c566f..b03ebde 100644 --- a/include/libnyquist/VorbisDecoder.h +++ b/include/libnyquist/VorbisDecoder.h @@ -27,7 +27,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #define VORBIS_DECODER_H #include "AudioDecoder.h" -#include "libvorbis/include/vorbis/vorbisfile.h" namespace nqr { diff --git a/libnyquist.xcodeproj/project.pbxproj b/libnyquist.xcodeproj/project.pbxproj index 8d900bc..d392f08 100644 --- a/libnyquist.xcodeproj/project.pbxproj +++ b/libnyquist.xcodeproj/project.pbxproj @@ -243,10 +243,10 @@ isa = PBXGroup; children = ( 080A58591B0867E500302850 /* util */, - 08B91D831AC73B8000335131 /* CafDecoder.h */, 08B91D841AC73B8000335131 /* AudioDecoder.h */, 08B91D851AC73B8000335131 /* AudioDevice.h */, 08B91D861AC73B8000335131 /* Common.h */, + 08B91D831AC73B8000335131 /* CafDecoder.h */, 08B91D881AC73B8000335131 /* FlacDecoder.h */, 08B91D891AC73B8000335131 /* VorbisDecoder.h */, 08B91D8A1AC73B8000335131 /* OpusDecoder.h */, diff --git a/src/OpusDecoder.cpp b/src/OpusDecoder.cpp index acd5fe5..dd45acd 100644 --- a/src/OpusDecoder.cpp +++ b/src/OpusDecoder.cpp @@ -24,6 +24,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "OpusDecoder.h" +#include "opus/opusfile/include/opusfile.h" using namespace nqr; diff --git a/src/VorbisDecoder.cpp b/src/VorbisDecoder.cpp index aab927b..1d0c82a 100644 --- a/src/VorbisDecoder.cpp +++ b/src/VorbisDecoder.cpp @@ -24,6 +24,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "VorbisDecoder.h" +#include "libvorbis/include/vorbis/vorbisfile.h" using namespace nqr;