From 712b7ac7899f0c773167c7b2388faa89c2bf7e69 Mon Sep 17 00:00:00 2001 From: Chris Moeller Date: Wed, 2 Oct 2013 15:11:56 -0700 Subject: [PATCH] Whoops. --- .../WMA/ffmpeg-strip-wma/libavcodec/avcodec.h | 15 +++++++++++++++ .../WMA/ffmpeg-strip-wma/libavformat/avformat.h | 8 ++++++++ 2 files changed, 23 insertions(+) diff --git a/Frameworks/WMA/ffmpeg-strip-wma/libavcodec/avcodec.h b/Frameworks/WMA/ffmpeg-strip-wma/libavcodec/avcodec.h index 1ae89d5ae..91383a4f3 100644 --- a/Frameworks/WMA/ffmpeg-strip-wma/libavcodec/avcodec.h +++ b/Frameworks/WMA/ffmpeg-strip-wma/libavcodec/avcodec.h @@ -28,6 +28,20 @@ */ #include + +#ifdef __FRAMEWORK__ +#include "samplefmt.h" +#include "attributes.h" +#include "avutil.h" +#include "buffer.h" +#include "cpu.h" +#include "channel_layout.h" +#include "dict.h" +#include "frame.h" +#include "log.h" +#include "pixfmt.h" +#include "rational.h" +#else #include "libavutil/samplefmt.h" #include "libavutil/attributes.h" #include "libavutil/avutil.h" @@ -39,6 +53,7 @@ #include "libavutil/log.h" #include "libavutil/pixfmt.h" #include "libavutil/rational.h" +#endif #include "version.h" diff --git a/Frameworks/WMA/ffmpeg-strip-wma/libavformat/avformat.h b/Frameworks/WMA/ffmpeg-strip-wma/libavformat/avformat.h index b18eb3f54..cb00751a2 100644 --- a/Frameworks/WMA/ffmpeg-strip-wma/libavformat/avformat.h +++ b/Frameworks/WMA/ffmpeg-strip-wma/libavformat/avformat.h @@ -200,12 +200,20 @@ #include #include /* FILE */ +#ifdef __FRAMEWORK__ +#include "avcodec.h" +#include "dict.h" +#include "log.h" +#else #include "libavcodec/avcodec.h" #include "libavutil/dict.h" #include "libavutil/log.h" +#endif #include "avio.h" +#ifndef __FRAMEWORK__ #include "libavformat/version.h" +#endif struct AVFormatContext;