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 17:01:19 -0700
commita989c66b844122260c2bfe96b37649f779032421 (patch)
tree8dd760a79dbdad5c137469772fa10a653d706c6f /vp9/encoder
parent587a71f1d6af6e7098b6ebdab37c4c904a4373d6 (diff)
downloadlibvpx-a989c66b844122260c2bfe96b37649f779032421.tar
libvpx-a989c66b844122260c2bfe96b37649f779032421.tar.gz
libvpx-a989c66b844122260c2bfe96b37649f779032421.tar.bz2
libvpx-a989c66b844122260c2bfe96b37649f779032421.zip
rename vp9_dct_impl_sse2.c to vp9_dct_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 FDCT* functions Change-Id: Ide6ff8c24ab31bdb0f833260505ae33660a1ad5b
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/x86/vp9_dct_sse2.c6
-rw-r--r--vp9/encoder/x86/vp9_dct_sse2_impl.h (renamed from vp9/encoder/x86/vp9_dct_impl_sse2.c)0
2 files changed, 3 insertions, 3 deletions
diff --git a/vp9/encoder/x86/vp9_dct_sse2.c b/vp9/encoder/x86/vp9_dct_sse2.c
index 73ed5ed4b..cff4fcbdc 100644
--- a/vp9/encoder/x86/vp9_dct_sse2.c
+++ b/vp9/encoder/x86/vp9_dct_sse2.c
@@ -2370,7 +2370,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 &
+ * them is in separate files (vp9/encoder/x86/vp9_dct_sse2_impl.h &
* vp9/encoder/x86/vp9_dct32x32_sse2_impl.h) which are used by both the 8 bit code
* and the high bit depth code.
*/
@@ -2380,7 +2380,7 @@ void vp9_highbd_fht16x16_sse2(const int16_t *input, tran_low_t *output,
#define FDCT4x4_2D vp9_fdct4x4_sse2
#define FDCT8x8_2D vp9_fdct8x8_sse2
#define FDCT16x16_2D vp9_fdct16x16_sse2
-#include "vp9/encoder/x86/vp9_dct_impl_sse2.c"
+#include "vp9/encoder/x86/vp9_dct_sse2_impl.h"
#undef FDCT4x4_2D
#undef FDCT8x8_2D
#undef FDCT16x16_2D
@@ -2407,7 +2407,7 @@ void vp9_highbd_fht16x16_sse2(const int16_t *input, tran_low_t *output,
#define FDCT4x4_2D vp9_highbd_fdct4x4_sse2
#define FDCT8x8_2D vp9_highbd_fdct8x8_sse2
#define FDCT16x16_2D vp9_highbd_fdct16x16_sse2
-#include "vp9/encoder/x86/vp9_dct_impl_sse2.c" // NOLINT
+#include "vp9/encoder/x86/vp9_dct_sse2_impl.h" // NOLINT
#undef FDCT4x4_2D
#undef FDCT8x8_2D
#undef FDCT16x16_2D
diff --git a/vp9/encoder/x86/vp9_dct_impl_sse2.c b/vp9/encoder/x86/vp9_dct_sse2_impl.h
index 11bf5a25e..11bf5a25e 100644
--- a/vp9/encoder/x86/vp9_dct_impl_sse2.c
+++ b/vp9/encoder/x86/vp9_dct_sse2_impl.h