summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-05-15 16:47:51 -0700
committerJames Zern <jzern@google.com>2015-05-15 16:59:52 -0700
commit587a71f1d6af6e7098b6ebdab37c4c904a4373d6 (patch)
tree6bbd0e8a14cb9117ac542de73f90a5056d2fe18c /vp9/encoder
parent4ec47249bcafb5e2814328bf45e3992d775cbd74 (diff)
downloadlibvpx-587a71f1d6af6e7098b6ebdab37c4c904a4373d6.tar
libvpx-587a71f1d6af6e7098b6ebdab37c4c904a4373d6.tar.gz
libvpx-587a71f1d6af6e7098b6ebdab37c4c904a4373d6.tar.bz2
libvpx-587a71f1d6af6e7098b6ebdab37c4c904a4373d6.zip
rename vp9_dct32x32_sse2.c to vp9_dct32x32_sse2_impl.h
this file shouldn't be built directly, it is included in vp9_dct_sse2.c to create a non-high-bitdepth and a high-bitdepth version silences missing prototype warnings for the unused FDCT32x32* functions Change-Id: I0e38f16dae5ea1728de184ee2c89287d48675c51
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/x86/vp9_dct32x32_sse2_impl.h (renamed from vp9/encoder/x86/vp9_dct32x32_sse2.c)0
-rw-r--r--vp9/encoder/x86/vp9_dct_sse2.c10
2 files changed, 5 insertions, 5 deletions
diff --git a/vp9/encoder/x86/vp9_dct32x32_sse2.c b/vp9/encoder/x86/vp9_dct32x32_sse2_impl.h
index 003ebd13f..003ebd13f 100644
--- a/vp9/encoder/x86/vp9_dct32x32_sse2.c
+++ b/vp9/encoder/x86/vp9_dct32x32_sse2_impl.h
diff --git a/vp9/encoder/x86/vp9_dct_sse2.c b/vp9/encoder/x86/vp9_dct_sse2.c
index 6d1f52a00..73ed5ed4b 100644
--- a/vp9/encoder/x86/vp9_dct_sse2.c
+++ b/vp9/encoder/x86/vp9_dct_sse2.c
@@ -2371,7 +2371,7 @@ void vp9_highbd_fht16x16_sse2(const int16_t *input, tran_low_t *output,
/*
* The DCTnxn functions are defined using the macros below. The main code for
* them is in separate files (vp9/encoder/x86/vp9_dct_impl_sse2.c &
- * vp9/encoder/x86/vp9_dct32x32_sse2.c) which are used by both the 8 bit code
+ * vp9/encoder/x86/vp9_dct32x32_sse2_impl.h) which are used by both the 8 bit code
* and the high bit depth code.
*/
@@ -2387,13 +2387,13 @@ void vp9_highbd_fht16x16_sse2(const int16_t *input, tran_low_t *output,
#define FDCT32x32_2D vp9_fdct32x32_rd_sse2
#define FDCT32x32_HIGH_PRECISION 0
-#include "vp9/encoder/x86/vp9_dct32x32_sse2.c"
+#include "vp9/encoder/x86/vp9_dct32x32_sse2_impl.h"
#undef FDCT32x32_2D
#undef FDCT32x32_HIGH_PRECISION
#define FDCT32x32_2D vp9_fdct32x32_sse2
#define FDCT32x32_HIGH_PRECISION 1
-#include "vp9/encoder/x86/vp9_dct32x32_sse2.c" // NOLINT
+#include "vp9/encoder/x86/vp9_dct32x32_sse2_impl.h" // NOLINT
#undef FDCT32x32_2D
#undef FDCT32x32_HIGH_PRECISION
@@ -2414,13 +2414,13 @@ void vp9_highbd_fht16x16_sse2(const int16_t *input, tran_low_t *output,
#define FDCT32x32_2D vp9_highbd_fdct32x32_rd_sse2
#define FDCT32x32_HIGH_PRECISION 0
-#include "vp9/encoder/x86/vp9_dct32x32_sse2.c" // NOLINT
+#include "vp9/encoder/x86/vp9_dct32x32_sse2_impl.h" // NOLINT
#undef FDCT32x32_2D
#undef FDCT32x32_HIGH_PRECISION
#define FDCT32x32_2D vp9_highbd_fdct32x32_sse2
#define FDCT32x32_HIGH_PRECISION 1
-#include "vp9/encoder/x86/vp9_dct32x32_sse2.c" // NOLINT
+#include "vp9/encoder/x86/vp9_dct32x32_sse2_impl.h" // NOLINT
#undef FDCT32x32_2D
#undef FDCT32x32_HIGH_PRECISION