Commit 81f46d5a authored by Diego Biurrun's avatar Diego Biurrun

ipp.h is a system header, use <> when #including it.

Originally committed as revision 13093 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 22700471
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "dsputil.h" #include "dsputil.h"
#ifdef HAVE_IPP #ifdef HAVE_IPP
#include "ipp.h" #include <ipp.h>
#endif #endif
extern void dsputil_init_iwmmxt(DSPContext* c, AVCodecContext *avctx); extern void dsputil_init_iwmmxt(DSPContext* c, AVCodecContext *avctx);
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "dsputil.h" #include "libavcodec/dsputil.h"
#define DEF(x, y) x ## _no_rnd_ ## y ##_iwmmxt #define DEF(x, y) x ## _no_rnd_ ## y ##_iwmmxt
#define SET_RND(regd) asm volatile ("mov r12, #1 \n\t tbcsth " #regd ", r12":::"r12"); #define SET_RND(regd) asm volatile ("mov r12, #1 \n\t tbcsth " #regd ", r12":::"r12");
......
...@@ -18,9 +18,9 @@ ...@@ -18,9 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "dsputil.h" #include "libavcodec/avcodec.h"
#include "mpegvideo.h" #include "libavcodec/dsputil.h"
#include "avcodec.h" #include "libavcodec/mpegvideo.h"
extern void MPV_common_init_iwmmxt(MpegEncContext *s); extern void MPV_common_init_iwmmxt(MpegEncContext *s);
extern void MPV_common_init_armv5te(MpegEncContext *s); extern void MPV_common_init_armv5te(MpegEncContext *s);
......
...@@ -19,9 +19,9 @@ ...@@ -19,9 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "dsputil.h" #include "libavcodec/avcodec.h"
#include "mpegvideo.h" #include "libavcodec/dsputil.h"
#include "avcodec.h" #include "libavcodec/mpegvideo.h"
#ifdef ENABLE_ARM_TESTS #ifdef ENABLE_ARM_TESTS
......
...@@ -18,9 +18,9 @@ ...@@ -18,9 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "dsputil.h" #include "libavcodec/avcodec.h"
#include "mpegvideo.h" #include "libavcodec/dsputil.h"
#include "avcodec.h" #include "libavcodec/mpegvideo.h"
static void dct_unquantize_h263_intra_iwmmxt(MpegEncContext *s, static void dct_unquantize_h263_intra_iwmmxt(MpegEncContext *s,
DCTELEM *block, int n, int qscale) DCTELEM *block, int n, int qscale)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment