Originally committed as revision 9034 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -19,7 +19,7 @@ |
| 19 | 19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 |
*/ |
| 21 | 21 |
|
| 22 |
-#include "../dsputil.h" |
|
| 22 |
+#include "dsputil.h" |
|
| 23 | 23 |
|
| 24 | 24 |
#define DEF(x, y) x ## _no_rnd_ ## y ##_iwmmxt |
| 25 | 25 |
#define SET_RND(regd) __asm__ __volatile__ ("mov r12, #1 \n\t tbcsth " #regd ", r12":::"r12");
|
| ... | ... |
@@ -19,9 +19,9 @@ |
| 19 | 19 |
* |
| 20 | 20 |
*/ |
| 21 | 21 |
|
| 22 |
-#include "../dsputil.h" |
|
| 23 |
-#include "../mpegvideo.h" |
|
| 24 |
-#include "../avcodec.h" |
|
| 22 |
+#include "dsputil.h" |
|
| 23 |
+#include "mpegvideo.h" |
|
| 24 |
+#include "avcodec.h" |
|
| 25 | 25 |
|
| 26 | 26 |
extern void MPV_common_init_iwmmxt(MpegEncContext *s); |
| 27 | 27 |
extern void MPV_common_init_armv5te(MpegEncContext *s); |
| ... | ... |
@@ -25,9 +25,9 @@ |
| 25 | 25 |
* Instructions timings and optimization guide for ARM9E: http://www.arm.com/pdfs/DDI0222B_9EJS_r1p2.pdf |
| 26 | 26 |
*/ |
| 27 | 27 |
|
| 28 |
-#include "../dsputil.h" |
|
| 29 |
-#include "../mpegvideo.h" |
|
| 30 |
-#include "../avcodec.h" |
|
| 28 |
+#include "dsputil.h" |
|
| 29 |
+#include "mpegvideo.h" |
|
| 30 |
+#include "avcodec.h" |
|
| 31 | 31 |
|
| 32 | 32 |
|
| 33 | 33 |
#ifdef ENABLE_ARM_TESTS |
| ... | ... |
@@ -18,9 +18,9 @@ |
| 18 | 18 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | 19 |
*/ |
| 20 | 20 |
|
| 21 |
-#include "../dsputil.h" |
|
| 22 |
-#include "../mpegvideo.h" |
|
| 23 |
-#include "../avcodec.h" |
|
| 21 |
+#include "dsputil.h" |
|
| 22 |
+#include "mpegvideo.h" |
|
| 23 |
+#include "avcodec.h" |
|
| 24 | 24 |
|
| 25 | 25 |
static void dct_unquantize_h263_intra_iwmmxt(MpegEncContext *s, |
| 26 | 26 |
DCTELEM *block, int n, int qscale) |
| ... | ... |
@@ -22,9 +22,9 @@ |
| 22 | 22 |
* MMX optimization by Nick Kurshev <nickols_k@mail.ru> |
| 23 | 23 |
*/ |
| 24 | 24 |
|
| 25 |
-#include "../dsputil.h" |
|
| 26 |
-#include "../simple_idct.h" |
|
| 27 |
-#include "../mpegvideo.h" |
|
| 25 |
+#include "dsputil.h" |
|
| 26 |
+#include "simple_idct.h" |
|
| 27 |
+#include "mpegvideo.h" |
|
| 28 | 28 |
#include "x86_cpu.h" |
| 29 | 29 |
#include "mmx.h" |
| 30 | 30 |
|
| ... | ... |
@@ -19,7 +19,7 @@ |
| 19 | 19 |
* License along with FFmpeg; if not, write to the Free Software |
| 20 | 20 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | 21 |
*/ |
| 22 |
-#include "../dsputil.h" |
|
| 22 |
+#include "dsputil.h" |
|
| 23 | 23 |
|
| 24 | 24 |
static const int p1m1[2] __attribute__((aligned(8))) = |
| 25 | 25 |
{ 0, 1 << 31 };
|
| ... | ... |
@@ -19,7 +19,7 @@ |
| 19 | 19 |
* License along with FFmpeg; if not, write to the Free Software |
| 20 | 20 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | 21 |
*/ |
| 22 |
-#include "../dsputil.h" |
|
| 22 |
+#include "dsputil.h" |
|
| 23 | 23 |
|
| 24 | 24 |
static const int p1m1[2] __attribute__((aligned(8))) = |
| 25 | 25 |
{ 0, 1 << 31 };
|
| ... | ... |
@@ -18,7 +18,7 @@ |
| 18 | 18 |
* License along with FFmpeg; if not, write to the Free Software |
| 19 | 19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 |
*/ |
| 21 |
-#include "../dsputil.h" |
|
| 21 |
+#include "dsputil.h" |
|
| 22 | 22 |
|
| 23 | 23 |
static const int p1p1p1m1[4] __attribute__((aligned(16))) = |
| 24 | 24 |
{ 0, 0, 0, 1 << 31 };
|
| ... | ... |
@@ -22,9 +22,9 @@ |
| 22 | 22 |
* h263, mpeg1, mpeg2 dequantizer & draw_edges by Michael Niedermayer <michaelni@gmx.at> |
| 23 | 23 |
*/ |
| 24 | 24 |
|
| 25 |
-#include "../dsputil.h" |
|
| 26 |
-#include "../mpegvideo.h" |
|
| 27 |
-#include "../avcodec.h" |
|
| 25 |
+#include "dsputil.h" |
|
| 26 |
+#include "mpegvideo.h" |
|
| 27 |
+#include "avcodec.h" |
|
| 28 | 28 |
#include "x86_cpu.h" |
| 29 | 29 |
|
| 30 | 30 |
extern uint16_t inv_zigzag_direct16[64]; |
| ... | ... |
@@ -19,8 +19,8 @@ |
| 19 | 19 |
* License along with FFmpeg; if not, write to the Free Software |
| 20 | 20 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | 21 |
*/ |
| 22 |
-#include "../dsputil.h" |
|
| 23 |
-#include "../simple_idct.h" |
|
| 22 |
+#include "dsputil.h" |
|
| 23 |
+#include "simple_idct.h" |
|
| 24 | 24 |
|
| 25 | 25 |
/* |
| 26 | 26 |
23170.475006 |
| ... | ... |
@@ -19,8 +19,8 @@ |
| 19 | 19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 |
*/ |
| 21 | 21 |
|
| 22 |
-#include "../avcodec.h" |
|
| 23 |
-#include "../snow.h" |
|
| 22 |
+#include "avcodec.h" |
|
| 23 |
+#include "snow.h" |
|
| 24 | 24 |
#include "x86_cpu.h" |
| 25 | 25 |
|
| 26 | 26 |
void ff_snow_horizontal_compose97i_sse2(DWTELEM *b, int width){
|
| ... | ... |
@@ -19,8 +19,8 @@ |
| 19 | 19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 |
*/ |
| 21 | 21 |
|
| 22 |
-#include "../dsputil.h" |
|
| 23 |
-#include "../mpegvideo.h" |
|
| 22 |
+#include "dsputil.h" |
|
| 23 |
+#include "mpegvideo.h" |
|
| 24 | 24 |
|
| 25 | 25 |
#include <mlib_types.h> |
| 26 | 26 |
#include <mlib_status.h> |
| ... | ... |
@@ -20,9 +20,9 @@ |
| 20 | 20 |
* MMI optimization by Leon van Stuivenberg |
| 21 | 21 |
*/ |
| 22 | 22 |
|
| 23 |
-#include "../dsputil.h" |
|
| 24 |
-#include "../mpegvideo.h" |
|
| 25 |
-#include "../avcodec.h" |
|
| 23 |
+#include "dsputil.h" |
|
| 24 |
+#include "mpegvideo.h" |
|
| 25 |
+#include "avcodec.h" |
|
| 26 | 26 |
|
| 27 | 27 |
static void dct_unquantize_h263_mmi(MpegEncContext *s, |
| 28 | 28 |
DCTELEM *block, int n, int qscale) |
| ... | ... |
@@ -20,8 +20,8 @@ |
| 20 | 20 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | 21 |
*/ |
| 22 | 22 |
|
| 23 |
-#include "../avcodec.h" |
|
| 24 |
-#include "../dsputil.h" |
|
| 23 |
+#include "avcodec.h" |
|
| 24 |
+#include "dsputil.h" |
|
| 25 | 25 |
|
| 26 | 26 |
static void memzero_align8(void *dst,size_t size) |
| 27 | 27 |
{
|
| ... | ... |
@@ -20,7 +20,7 @@ |
| 20 | 20 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | 21 |
*/ |
| 22 | 22 |
|
| 23 |
-#include "../dsputil.h" |
|
| 23 |
+#include "dsputil.h" |
|
| 24 | 24 |
#define c1 1.38703984532214752434 /* sqrt(2)*cos(1*pi/16) */ |
| 25 | 25 |
#define c2 1.30656296487637657577 /* sqrt(2)*cos(2*pi/16) */ |
| 26 | 26 |
#define c3 1.17587560241935884520 /* sqrt(2)*cos(3*pi/16) */ |