rename files vp10_* to av1_*

Change-Id: I017e3b64d5074ad47fed8cd642fdf366bd475b1b
diff --git a/av1/vp10_common.mk b/av1/av1_common.mk
similarity index 81%
rename from av1/vp10_common.mk
rename to av1/av1_common.mk
index 6d27eee..99cbe46 100644
--- a/av1/vp10_common.mk
+++ b/av1/av1_common.mk
@@ -8,8 +8,8 @@
 ##  be found in the AUTHORS file in the root of the source tree.
 ##
 
-VP10_COMMON_SRCS-yes += vp10_common.mk
-VP10_COMMON_SRCS-yes += vp10_iface_common.h
+VP10_COMMON_SRCS-yes += av1_common.mk
+VP10_COMMON_SRCS-yes += av1_iface_common.h
 VP10_COMMON_SRCS-yes += common/alloccommon.c
 VP10_COMMON_SRCS-yes += common/blockd.c
 VP10_COMMON_SRCS-yes += common/debugmodes.c
@@ -29,8 +29,8 @@
 VP10_COMMON_SRCS-yes += common/filter.c
 VP10_COMMON_SRCS-yes += common/idct.h
 VP10_COMMON_SRCS-yes += common/idct.c
-VP10_COMMON_SRCS-yes += common/vp10_inv_txfm.h
-VP10_COMMON_SRCS-yes += common/vp10_inv_txfm.c
+VP10_COMMON_SRCS-yes += common/av1_inv_txfm.h
+VP10_COMMON_SRCS-yes += common/av1_inv_txfm.c
 VP10_COMMON_SRCS-yes += common/loopfilter.h
 VP10_COMMON_SRCS-yes += common/thread_common.h
 VP10_COMMON_SRCS-yes += common/mv.h
@@ -40,8 +40,8 @@
 VP10_COMMON_SRCS-yes += common/quant_common.h
 VP10_COMMON_SRCS-yes += common/reconinter.h
 VP10_COMMON_SRCS-yes += common/reconintra.h
-VP10_COMMON_SRCS-yes += common/vp10_rtcd.c
-VP10_COMMON_SRCS-yes += common/vp10_rtcd_defs.pl
+VP10_COMMON_SRCS-yes += common/av1_rtcd.c
+VP10_COMMON_SRCS-yes += common/av1_rtcd_defs.pl
 VP10_COMMON_SRCS-yes += common/scale.h
 VP10_COMMON_SRCS-yes += common/scale.c
 VP10_COMMON_SRCS-yes += common/seg_common.h
@@ -58,8 +58,8 @@
 VP10_COMMON_SRCS-yes += common/common_data.h
 VP10_COMMON_SRCS-yes += common/scan.c
 VP10_COMMON_SRCS-yes += common/scan.h
-VP10_COMMON_SRCS-yes += common/vp10_fwd_txfm.h
-VP10_COMMON_SRCS-yes += common/vp10_fwd_txfm.c
+VP10_COMMON_SRCS-yes += common/av1_fwd_txfm.h
+VP10_COMMON_SRCS-yes += common/av1_fwd_txfm.c
 VP10_COMMON_SRCS-yes += common/clpf.c
 VP10_COMMON_SRCS-yes += common/clpf.h
 ifeq ($(CONFIG_DERING),yes)
@@ -83,16 +83,16 @@
 VP10_COMMON_SRCS-$(HAVE_MSA) += common/mips/msa/idct16x16_msa.c
 
 VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idct_intrin_sse2.c
-VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_fwd_txfm_sse2.c
-VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_fwd_dct32x32_impl_sse2.h
-VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_fwd_txfm_impl_sse2.h
+VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/av1_fwd_txfm_sse2.c
+VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/av1_fwd_dct32x32_impl_sse2.h
+VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/av1_fwd_txfm_impl_sse2.h
 
 ifneq ($(CONFIG_VPX_HIGHBITDEPTH),yes)
 VP10_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iht4x4_add_neon.c
 VP10_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iht8x8_add_neon.c
 endif
 
-VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_inv_txfm_sse2.c
-VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_inv_txfm_sse2.h
+VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/av1_inv_txfm_sse2.c
+VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/av1_inv_txfm_sse2.h
 
-$(eval $(call rtcd_h_template,vp10_rtcd,av1/common/vp10_rtcd_defs.pl))
+$(eval $(call rtcd_h_template,av1_rtcd,av1/common/av1_rtcd_defs.pl))
diff --git a/av1/vp10_cx_iface.c b/av1/av1_cx_iface.c
similarity index 99%
rename from av1/vp10_cx_iface.c
rename to av1/av1_cx_iface.c
index 852f3cd..5b045f2 100644
--- a/av1/vp10_cx_iface.c
+++ b/av1/av1_cx_iface.c
@@ -20,7 +20,7 @@
 #include "av1/encoder/encoder.h"
 #include "aom/vp8cx.h"
 #include "av1/encoder/firstpass.h"
-#include "av1/vp10_iface_common.h"
+#include "av1/av1_iface_common.h"
 
 struct vp10_extracfg {
   int cpu_used;  // available cpu percentage in 1/16
diff --git a/av1/vp10_dx_iface.c b/av1/av1_dx_iface.c
similarity index 99%
rename from av1/vp10_dx_iface.c
rename to av1/av1_dx_iface.c
index 54bdefc..5bfaf28 100644
--- a/av1/vp10_dx_iface.c
+++ b/av1/av1_dx_iface.c
@@ -28,7 +28,7 @@
 #include "av1/decoder/decoder.h"
 #include "av1/decoder/decodeframe.h"
 
-#include "av1/vp10_iface_common.h"
+#include "av1/av1_iface_common.h"
 
 typedef vpx_codec_stream_info_t vp10_stream_info_t;
 
diff --git a/av1/vp10_iface_common.h b/av1/av1_iface_common.h
similarity index 100%
rename from av1/vp10_iface_common.h
rename to av1/av1_iface_common.h
diff --git a/av1/common/arm/neon/iht4x4_add_neon.c b/av1/common/arm/neon/iht4x4_add_neon.c
index a3a624f..9f27f51 100644
--- a/av1/common/arm/neon/iht4x4_add_neon.c
+++ b/av1/common/arm/neon/iht4x4_add_neon.c
@@ -12,7 +12,7 @@
 #include <arm_neon.h>
 #include <assert.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "av1/common/common.h"
 
diff --git a/av1/common/arm/neon/iht8x8_add_neon.c b/av1/common/arm/neon/iht8x8_add_neon.c
index fe8a117..0643883 100644
--- a/av1/common/arm/neon/iht8x8_add_neon.c
+++ b/av1/common/arm/neon/iht8x8_add_neon.c
@@ -12,7 +12,7 @@
 #include <arm_neon.h>
 #include <assert.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "av1/common/common.h"
 
diff --git a/av1/common/vp10_fwd_txfm.c b/av1/common/av1_fwd_txfm.c
similarity index 99%
rename from av1/common/vp10_fwd_txfm.c
rename to av1/common/av1_fwd_txfm.c
index b069742..ac68eb9 100644
--- a/av1/common/vp10_fwd_txfm.c
+++ b/av1/common/av1_fwd_txfm.c
@@ -9,7 +9,7 @@
  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
  */
 
-#include "av1/common/vp10_fwd_txfm.h"
+#include "av1/common/av1_fwd_txfm.h"
 
 void vp10_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) {
   // The 2D transform is done with two passes which are actually pretty
diff --git a/av1/common/vp10_fwd_txfm.h b/av1/common/av1_fwd_txfm.h
similarity index 100%
rename from av1/common/vp10_fwd_txfm.h
rename to av1/common/av1_fwd_txfm.h
diff --git a/av1/common/vp10_inv_txfm.c b/av1/common/av1_inv_txfm.c
similarity index 99%
rename from av1/common/vp10_inv_txfm.c
rename to av1/common/av1_inv_txfm.c
index 68320a5..072593a 100644
--- a/av1/common/vp10_inv_txfm.c
+++ b/av1/common/av1_inv_txfm.c
@@ -11,7 +11,7 @@
 #include <math.h>
 #include <string.h>
 
-#include "av1/common/vp10_inv_txfm.h"
+#include "av1/common/av1_inv_txfm.h"
 
 void vp10_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) {
   /* 4-point reversible, orthonormal inverse Walsh-Hadamard in 3.5 adds,
diff --git a/av1/common/vp10_inv_txfm.h b/av1/common/av1_inv_txfm.h
similarity index 100%
rename from av1/common/vp10_inv_txfm.h
rename to av1/common/av1_inv_txfm.h
diff --git a/av1/common/vp10_rtcd.c b/av1/common/av1_rtcd.c
similarity index 94%
rename from av1/common/vp10_rtcd.c
rename to av1/common/av1_rtcd.c
index aa03b05..5bb99a7 100644
--- a/av1/common/vp10_rtcd.c
+++ b/av1/common/av1_rtcd.c
@@ -10,10 +10,10 @@
  */
 #include "./vpx_config.h"
 #define RTCD_C
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "aom_ports/vpx_once.h"
 
-void vp10_rtcd() {
+void av1_rtcd() {
   // TODO(JBB): Remove this once, by insuring that both the encoder and
   // decoder setup functions are protected by once();
   once(setup_rtcd_internal);
diff --git a/av1/common/vp10_rtcd_defs.pl b/av1/common/av1_rtcd_defs.pl
similarity index 100%
rename from av1/common/vp10_rtcd_defs.pl
rename to av1/common/av1_rtcd_defs.pl
diff --git a/av1/common/idct.c b/av1/common/idct.c
index 5918202..251e778 100644
--- a/av1/common/idct.c
+++ b/av1/common/idct.c
@@ -11,7 +11,7 @@
 
 #include <math.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "av1/common/blockd.h"
 #include "av1/common/idct.h"
diff --git a/av1/common/mips/dspr2/itrans16_dspr2.c b/av1/common/mips/dspr2/itrans16_dspr2.c
index 5923448..83524dc 100644
--- a/av1/common/mips/dspr2/itrans16_dspr2.c
+++ b/av1/common/mips/dspr2/itrans16_dspr2.c
@@ -13,7 +13,7 @@
 #include <stdio.h>
 
 #include "./vpx_config.h"
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "av1/common/common.h"
 #include "av1/common/blockd.h"
 #include "av1/common/idct.h"
diff --git a/av1/common/mips/dspr2/itrans4_dspr2.c b/av1/common/mips/dspr2/itrans4_dspr2.c
index aa609f4..6dec7af 100644
--- a/av1/common/mips/dspr2/itrans4_dspr2.c
+++ b/av1/common/mips/dspr2/itrans4_dspr2.c
@@ -13,7 +13,7 @@
 #include <stdio.h>
 
 #include "./vpx_config.h"
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "av1/common/common.h"
 #include "av1/common/blockd.h"
 #include "av1/common/idct.h"
diff --git a/av1/common/mips/dspr2/itrans8_dspr2.c b/av1/common/mips/dspr2/itrans8_dspr2.c
index 420168a..c1fa646 100644
--- a/av1/common/mips/dspr2/itrans8_dspr2.c
+++ b/av1/common/mips/dspr2/itrans8_dspr2.c
@@ -13,7 +13,7 @@
 #include <stdio.h>
 
 #include "./vpx_config.h"
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "av1/common/common.h"
 #include "av1/common/blockd.h"
 #include "aom_dsp/mips/inv_txfm_dspr2.h"
diff --git a/av1/common/onyxc_int.h b/av1/common/onyxc_int.h
index 90c2a90..33813f2 100644
--- a/av1/common/onyxc_int.h
+++ b/av1/common/onyxc_int.h
@@ -15,7 +15,7 @@
 #include "./vpx_config.h"
 #include "aom/internal/vpx_codec_internal.h"
 #include "aom_util/vpx_thread.h"
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "av1/common/alloccommon.h"
 #include "av1/common/loopfilter.h"
 #include "av1/common/entropymv.h"
diff --git a/av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h b/av1/common/x86/av1_fwd_dct32x32_impl_sse2.h
similarity index 99%
rename from av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h
rename to av1/common/x86/av1_fwd_dct32x32_impl_sse2.h
index 534c112..b6c38aa 100644
--- a/av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h
+++ b/av1/common/x86/av1_fwd_dct32x32_impl_sse2.h
@@ -11,8 +11,8 @@
 
 #include <emmintrin.h>  // SSE2
 
-#include "./vp10_rtcd.h"
-#include "av1/common/vp10_fwd_txfm.h"
+#include "./av1_rtcd.h"
+#include "av1/common/av1_fwd_txfm.h"
 #include "aom_dsp/txfm_common.h"
 #include "aom_dsp/x86/txfm_common_sse2.h"
 
diff --git a/av1/common/x86/vp10_fwd_txfm_impl_sse2.h b/av1/common/x86/av1_fwd_txfm_impl_sse2.h
similarity index 100%
rename from av1/common/x86/vp10_fwd_txfm_impl_sse2.h
rename to av1/common/x86/av1_fwd_txfm_impl_sse2.h
diff --git a/av1/common/x86/vp10_fwd_txfm_sse2.c b/av1/common/x86/av1_fwd_txfm_sse2.c
similarity index 95%
rename from av1/common/x86/vp10_fwd_txfm_sse2.c
rename to av1/common/x86/av1_fwd_txfm_sse2.c
index a2e5693..30fd720 100644
--- a/av1/common/x86/vp10_fwd_txfm_sse2.c
+++ b/av1/common/x86/av1_fwd_txfm_sse2.c
@@ -229,20 +229,20 @@
 #define FDCT4x4_2D vp10_fdct4x4_sse2
 #define FDCT8x8_2D vp10_fdct8x8_sse2
 #define FDCT16x16_2D vp10_fdct16x16_sse2
-#include "av1/common/x86/vp10_fwd_txfm_impl_sse2.h"
+#include "av1/common/x86/av1_fwd_txfm_impl_sse2.h"
 #undef FDCT4x4_2D
 #undef FDCT8x8_2D
 #undef FDCT16x16_2D
 
 #define FDCT32x32_2D vp10_fdct32x32_rd_sse2
 #define FDCT32x32_HIGH_PRECISION 0
-#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h"
+#include "av1/common/x86/av1_fwd_dct32x32_impl_sse2.h"
 #undef FDCT32x32_2D
 #undef FDCT32x32_HIGH_PRECISION
 
 #define FDCT32x32_2D vp10_fdct32x32_sse2
 #define FDCT32x32_HIGH_PRECISION 1
-#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h"  // NOLINT
+#include "av1/common/x86/av1_fwd_dct32x32_impl_sse2.h"  // NOLINT
 #undef FDCT32x32_2D
 #undef FDCT32x32_HIGH_PRECISION
 #undef DCT_HIGH_BIT_DEPTH
@@ -252,20 +252,20 @@
 #define FDCT4x4_2D vp10_highbd_fdct4x4_sse2
 #define FDCT8x8_2D vp10_highbd_fdct8x8_sse2
 #define FDCT16x16_2D vp10_highbd_fdct16x16_sse2
-#include "av1/common/x86/vp10_fwd_txfm_impl_sse2.h"  // NOLINT
+#include "av1/common/x86/av1_fwd_txfm_impl_sse2.h"  // NOLINT
 #undef FDCT4x4_2D
 #undef FDCT8x8_2D
 #undef FDCT16x16_2D
 
 #define FDCT32x32_2D vp10_highbd_fdct32x32_rd_sse2
 #define FDCT32x32_HIGH_PRECISION 0
-#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h"  // NOLINT
+#include "av1/common/x86/av1_fwd_dct32x32_impl_sse2.h"  // NOLINT
 #undef FDCT32x32_2D
 #undef FDCT32x32_HIGH_PRECISION
 
 #define FDCT32x32_2D vp10_highbd_fdct32x32_sse2
 #define FDCT32x32_HIGH_PRECISION 1
-#include "av1/common/x86/vp10_fwd_dct32x32_impl_sse2.h"  // NOLINT
+#include "av1/common/x86/av1_fwd_dct32x32_impl_sse2.h"  // NOLINT
 #undef FDCT32x32_2D
 #undef FDCT32x32_HIGH_PRECISION
 #undef DCT_HIGH_BIT_DEPTH
diff --git a/av1/common/x86/vp10_inv_txfm_sse2.c b/av1/common/x86/av1_inv_txfm_sse2.c
similarity index 99%
rename from av1/common/x86/vp10_inv_txfm_sse2.c
rename to av1/common/x86/av1_inv_txfm_sse2.c
index a24b06e..ede75f9 100644
--- a/av1/common/x86/vp10_inv_txfm_sse2.c
+++ b/av1/common/x86/av1_inv_txfm_sse2.c
@@ -9,8 +9,8 @@
  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
  */
 
-#include "./vp10_rtcd.h"
-#include "av1/common/x86/vp10_inv_txfm_sse2.h"
+#include "./av1_rtcd.h"
+#include "av1/common/x86/av1_inv_txfm_sse2.h"
 #include "aom_dsp/x86/txfm_common_sse2.h"
 
 #define RECON_AND_STORE4X4(dest, in_x)                    \
diff --git a/av1/common/x86/vp10_inv_txfm_sse2.h b/av1/common/x86/av1_inv_txfm_sse2.h
similarity index 99%
rename from av1/common/x86/vp10_inv_txfm_sse2.h
rename to av1/common/x86/av1_inv_txfm_sse2.h
index fb5d1a4..f24fc68 100644
--- a/av1/common/x86/vp10_inv_txfm_sse2.h
+++ b/av1/common/x86/av1_inv_txfm_sse2.h
@@ -15,7 +15,7 @@
 #include <emmintrin.h>  // SSE2
 #include "./vpx_config.h"
 #include "aom/vpx_integer.h"
-#include "av1/common/vp10_inv_txfm.h"
+#include "av1/common/av1_inv_txfm.h"
 
 // perform 8x8 transpose
 static INLINE void array_transpose_8x8(__m128i *in, __m128i *res) {
diff --git a/av1/decoder/decodeframe.c b/av1/decoder/decodeframe.c
index 3b14af9..063242e 100644
--- a/av1/decoder/decodeframe.c
+++ b/av1/decoder/decodeframe.c
@@ -12,7 +12,7 @@
 #include <assert.h>
 #include <stdlib.h>  // qsort()
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "./vpx_scale_rtcd.h"
 #include "./vpx_config.h"
diff --git a/av1/decoder/decoder.c b/av1/decoder/decoder.c
index 211fa42..ac0fa58 100644
--- a/av1/decoder/decoder.c
+++ b/av1/decoder/decoder.c
@@ -13,7 +13,7 @@
 #include <limits.h>
 #include <stdio.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "./vpx_scale_rtcd.h"
 
@@ -38,7 +38,7 @@
   static volatile int init_done = 0;
 
   if (!init_done) {
-    vp10_rtcd();
+    av1_rtcd();
     vpx_dsp_rtcd();
     vpx_scale_rtcd();
     vp10_init_intra_predictors();
diff --git a/av1/encoder/arm/neon/dct_neon.c b/av1/encoder/arm/neon/dct_neon.c
index 22b1ff2..9424c5b 100644
--- a/av1/encoder/arm/neon/dct_neon.c
+++ b/av1/encoder/arm/neon/dct_neon.c
@@ -11,7 +11,7 @@
 
 #include <arm_neon.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "./vpx_dsp_rtcd.h"
 
diff --git a/av1/encoder/arm/neon/error_neon.c b/av1/encoder/arm/neon/error_neon.c
index 7e18aaf..b0761cd 100644
--- a/av1/encoder/arm/neon/error_neon.c
+++ b/av1/encoder/arm/neon/error_neon.c
@@ -12,7 +12,7 @@
 #include <arm_neon.h>
 #include <assert.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 
 int64_t vp10_block_error_fp_neon(const int16_t *coeff, const int16_t *dqcoeff,
                                  int block_size) {
diff --git a/av1/encoder/blockiness.c b/av1/encoder/blockiness.c
index 0ed0a94..e36dc97 100644
--- a/av1/encoder/blockiness.c
+++ b/av1/encoder/blockiness.c
@@ -9,7 +9,7 @@
  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
  */
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "./vpx_dsp_rtcd.h"
 #include "av1/common/common.h"
diff --git a/av1/encoder/dct.c b/av1/encoder/dct.c
index db8e3f3..3fcc634 100644
--- a/av1/encoder/dct.c
+++ b/av1/encoder/dct.c
@@ -12,7 +12,7 @@
 #include <assert.h>
 #include <math.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "./vpx_dsp_rtcd.h"
 
diff --git a/av1/encoder/encodeframe.c b/av1/encoder/encodeframe.c
index 18f7bb7..d2c01ce 100644
--- a/av1/encoder/encodeframe.c
+++ b/av1/encoder/encodeframe.c
@@ -13,7 +13,7 @@
 #include <math.h>
 #include <stdio.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "./vpx_config.h"
 
diff --git a/av1/encoder/encodemb.c b/av1/encoder/encodemb.c
index 4a63f7a..22c5908 100644
--- a/av1/encoder/encodemb.c
+++ b/av1/encoder/encodemb.c
@@ -9,7 +9,7 @@
  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
  */
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "./vpx_dsp_rtcd.h"
 
diff --git a/av1/encoder/encoder.c b/av1/encoder/encoder.c
index 593daf6..72af6cd 100644
--- a/av1/encoder/encoder.c
+++ b/av1/encoder/encoder.c
@@ -48,7 +48,7 @@
 #include "av1/encoder/speed_features.h"
 #include "av1/encoder/temporal_filter.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "./vpx_scale_rtcd.h"
 #include "aom/internal/vpx_psnr.h"
@@ -317,7 +317,7 @@
   static volatile int init_done = 0;
 
   if (!init_done) {
-    vp10_rtcd();
+    av1_rtcd();
     vpx_dsp_rtcd();
     vpx_scale_rtcd();
     vp10_init_intra_predictors();
diff --git a/av1/encoder/mbgraph.c b/av1/encoder/mbgraph.c
index b9b2eb1..16eb195 100644
--- a/av1/encoder/mbgraph.c
+++ b/av1/encoder/mbgraph.c
@@ -11,7 +11,7 @@
 
 #include <limits.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 
 #include "aom_dsp/vpx_dsp_common.h"
diff --git a/av1/encoder/mips/msa/error_msa.c b/av1/encoder/mips/msa/error_msa.c
index 3c02030..6707976 100644
--- a/av1/encoder/mips/msa/error_msa.c
+++ b/av1/encoder/mips/msa/error_msa.c
@@ -9,7 +9,7 @@
  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
  */
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "aom_dsp/mips/macros_msa.h"
 
 #define BLOCK_ERROR_BLOCKSIZE_MSA(BSize)                                     \
diff --git a/av1/encoder/mips/msa/temporal_filter_msa.c b/av1/encoder/mips/msa/temporal_filter_msa.c
index 89fc779..d690a3e 100644
--- a/av1/encoder/mips/msa/temporal_filter_msa.c
+++ b/av1/encoder/mips/msa/temporal_filter_msa.c
@@ -9,7 +9,7 @@
  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
  */
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "aom_dsp/mips/macros_msa.h"
 
 static void temporal_filter_apply_8size_msa(uint8_t *frm1_ptr, uint32_t stride,
diff --git a/av1/encoder/rd.c b/av1/encoder/rd.c
index 0d61310..fabb6af 100644
--- a/av1/encoder/rd.c
+++ b/av1/encoder/rd.c
@@ -13,7 +13,7 @@
 #include <math.h>
 #include <stdio.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 
 #include "aom_dsp/vpx_dsp_common.h"
 #include "aom_mem/vpx_mem.h"
diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c
index 7f46cb0..a02c88b 100644
--- a/av1/encoder/rdopt.c
+++ b/av1/encoder/rdopt.c
@@ -12,7 +12,7 @@
 #include <assert.h>
 #include <math.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 
 #include "aom_dsp/vpx_dsp_common.h"
diff --git a/av1/encoder/x86/dct_sse2.c b/av1/encoder/x86/dct_sse2.c
index 9c66041..69f10b7 100644
--- a/av1/encoder/x86/dct_sse2.c
+++ b/av1/encoder/x86/dct_sse2.c
@@ -12,7 +12,7 @@
 #include <assert.h>
 #include <emmintrin.h>  // SSE2
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "aom_dsp/txfm_common.h"
 #include "aom_dsp/x86/fwd_txfm_sse2.h"
diff --git a/av1/encoder/x86/dct_ssse3.c b/av1/encoder/x86/dct_ssse3.c
index 57ecea5..91cbec2 100644
--- a/av1/encoder/x86/dct_ssse3.c
+++ b/av1/encoder/x86/dct_ssse3.c
@@ -17,7 +17,7 @@
 #endif
 #include <tmmintrin.h>  // SSSE3
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "aom_dsp/x86/inv_txfm_sse2.h"
 #include "aom_dsp/x86/txfm_common_sse2.h"
 
diff --git a/av1/encoder/x86/error_intrin_avx2.c b/av1/encoder/x86/error_intrin_avx2.c
index ce79495..7533557 100644
--- a/av1/encoder/x86/error_intrin_avx2.c
+++ b/av1/encoder/x86/error_intrin_avx2.c
@@ -11,7 +11,7 @@
 
 #include <immintrin.h>  // AVX2
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "aom/vpx_integer.h"
 
 int64_t vp10_block_error_avx2(const int16_t *coeff, const int16_t *dqcoeff,
diff --git a/av1/encoder/x86/quantize_sse2.c b/av1/encoder/x86/quantize_sse2.c
index 12a14c0..7e0c0ec 100644
--- a/av1/encoder/x86/quantize_sse2.c
+++ b/av1/encoder/x86/quantize_sse2.c
@@ -12,7 +12,7 @@
 #include <emmintrin.h>
 #include <xmmintrin.h>
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "aom/vpx_integer.h"
 
 void vp10_quantize_fp_sse2(const int16_t* coeff_ptr, intptr_t n_coeffs,
diff --git a/av1/vp10cx.mk b/av1/vp10cx.mk
index 3aaa0b0..22448ce 100644
--- a/av1/vp10cx.mk
+++ b/av1/vp10cx.mk
@@ -15,7 +15,7 @@
 VP10_CX_SRCS_REMOVE-yes += $(VP10_COMMON_SRCS_REMOVE-yes)
 VP10_CX_SRCS_REMOVE-no  += $(VP10_COMMON_SRCS_REMOVE-no)
 
-VP10_CX_SRCS-yes += vp10_cx_iface.c
+VP10_CX_SRCS-yes += av1_cx_iface.c
 
 VP10_CX_SRCS-yes += encoder/bitstream.c
 VP10_CX_SRCS-yes += encoder/context_tree.c
diff --git a/av1/vp10dx.mk b/av1/vp10dx.mk
index fce6d0d..f3d455e 100644
--- a/av1/vp10dx.mk
+++ b/av1/vp10dx.mk
@@ -15,7 +15,7 @@
 VP10_DX_SRCS_REMOVE-yes += $(VP10_COMMON_SRCS_REMOVE-yes)
 VP10_DX_SRCS_REMOVE-no  += $(VP10_COMMON_SRCS_REMOVE-no)
 
-VP10_DX_SRCS-yes += vp10_dx_iface.c
+VP10_DX_SRCS-yes += av1_dx_iface.c
 
 VP10_DX_SRCS-yes += decoder/decodemv.c
 VP10_DX_SRCS-yes += decoder/decodeframe.c
diff --git a/build/make/Android.mk b/build/make/Android.mk
index b3a2a08..5d735f6 100644
--- a/build/make/Android.mk
+++ b/build/make/Android.mk
@@ -169,7 +169,7 @@
 rtcd_dep_template_SRCS := $(addprefix $(LOCAL_PATH)/, $(LOCAL_SRC_FILES))
 rtcd_dep_template_SRCS := $$(rtcd_dep_template_SRCS:.neon=)
 ifeq ($(CONFIG_VP10), yes)
-$$(rtcd_dep_template_SRCS): vp10_rtcd.h
+$$(rtcd_dep_template_SRCS): av1_rtcd.h
 endif
 $$(rtcd_dep_template_SRCS): vpx_scale_rtcd.h
 $$(rtcd_dep_template_SRCS): vpx_dsp_rtcd.h
diff --git a/libs.mk b/libs.mk
index f135bf2..8665fd1 100644
--- a/libs.mk
+++ b/libs.mk
@@ -56,7 +56,7 @@
 #  VP10 make file
 ifeq ($(CONFIG_VP10),yes)
   VP10_PREFIX=av1/
-  include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10_common.mk
+  include $(SRC_PATH_BARE)/$(VP10_PREFIX)av1_common.mk
 endif
 
 ifeq ($(CONFIG_VP10_ENCODER),yes)
diff --git a/test/vp10_dct_test.cc b/test/av1_dct_test.cc
similarity index 100%
rename from test/vp10_dct_test.cc
rename to test/av1_dct_test.cc
diff --git a/test/vp10_inv_txfm_test.cc b/test/av1_inv_txfm_test.cc
similarity index 99%
rename from test/vp10_inv_txfm_test.cc
rename to test/av1_inv_txfm_test.cc
index 842679b..d007014 100644
--- a/test/vp10_inv_txfm_test.cc
+++ b/test/av1_inv_txfm_test.cc
@@ -14,7 +14,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
@@ -23,7 +23,7 @@
 #include "av1/common/blockd.h"
 #include "av1/common/scan.h"
 #include "aom/vpx_integer.h"
-#include "av1/common/vp10_inv_txfm.h"
+#include "av1/common/av1_inv_txfm.h"
 
 using libaom_test::ACMRandom;
 
diff --git a/test/convolve_test.cc b/test/convolve_test.cc
index 3b1d560..54537dc 100644
--- a/test/convolve_test.cc
+++ b/test/convolve_test.cc
@@ -13,7 +13,7 @@
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
 #include "./vpx_config.h"
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
diff --git a/test/dct16x16_test.cc b/test/dct16x16_test.cc
index c981ff1..ae38aaa 100644
--- a/test/dct16x16_test.cc
+++ b/test/dct16x16_test.cc
@@ -14,7 +14,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
diff --git a/test/dct32x32_test.cc b/test/dct32x32_test.cc
index e8bebbc..2cdfb90 100644
--- a/test/dct32x32_test.cc
+++ b/test/dct32x32_test.cc
@@ -14,7 +14,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
diff --git a/test/encoder_parms_get_to_decoder.cc b/test/encoder_parms_get_to_decoder.cc
index f69ce4c..0104756 100644
--- a/test/encoder_parms_get_to_decoder.cc
+++ b/test/encoder_parms_get_to_decoder.cc
@@ -14,7 +14,7 @@
 #include "test/encode_test_driver.h"
 #include "test/util.h"
 #include "test/y4m_video_source.h"
-#include "av1/vp10_dx_iface.c"
+#include "av1/av1_dx_iface.c"
 
 namespace {
 
diff --git a/test/error_block_test.cc b/test/error_block_test.cc
index da346ad..72d7283 100644
--- a/test/error_block_test.cc
+++ b/test/error_block_test.cc
@@ -15,7 +15,7 @@
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
 #include "./vpx_config.h"
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
 #include "test/register_state_check.h"
diff --git a/test/fdct4x4_test.cc b/test/fdct4x4_test.cc
index b3d6c4a..f1fd7e3 100644
--- a/test/fdct4x4_test.cc
+++ b/test/fdct4x4_test.cc
@@ -14,7 +14,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
diff --git a/test/fdct8x8_test.cc b/test/fdct8x8_test.cc
index c566be7..4aa130f 100644
--- a/test/fdct8x8_test.cc
+++ b/test/fdct8x8_test.cc
@@ -14,7 +14,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
diff --git a/test/partial_idct_test.cc b/test/partial_idct_test.cc
index 80aebde..8e59a5d 100644
--- a/test/partial_idct_test.cc
+++ b/test/partial_idct_test.cc
@@ -14,7 +14,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
diff --git a/test/subtract_test.cc b/test/subtract_test.cc
index ba5300e..fd51e2a 100644
--- a/test/subtract_test.cc
+++ b/test/subtract_test.cc
@@ -10,7 +10,7 @@
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-#include "./vp10_rtcd.h"
+#include "./av1_rtcd.h"
 #include "./vpx_config.h"
 #include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
diff --git a/test/test.mk b/test/test.mk
index d3bad9d..a0843cb 100644
--- a/test/test.mk
+++ b/test/test.mk
@@ -116,8 +116,8 @@
 endif
 LIBAOM_TEST_SRCS-$(CONFIG_VP10_ENCODER) += arf_freq_test.cc
 
-LIBAOM_TEST_SRCS-yes                    += vp10_inv_txfm_test.cc
-LIBAOM_TEST_SRCS-$(CONFIG_VP10_ENCODER) += vp10_dct_test.cc
+LIBAOM_TEST_SRCS-yes                    += av1_inv_txfm_test.cc
+LIBAOM_TEST_SRCS-$(CONFIG_VP10_ENCODER) += av1_dct_test.cc
 
 endif # VP10
 
diff --git a/test/test_libaom.cc b/test/test_libaom.cc
index 3f650ab..031807c 100644
--- a/test/test_libaom.cc
+++ b/test/test_libaom.cc
@@ -17,7 +17,7 @@
 #endif
 extern "C" {
 #if CONFIG_VP10
-extern void vp10_rtcd();
+extern void av1_rtcd();
 #endif  // CONFIG_VP10
 extern void vpx_dsp_rtcd();
 extern void vpx_scale_rtcd();
@@ -55,7 +55,7 @@
 // that exercise internal symbols.
 
 #if CONFIG_VP10
-  vp10_rtcd();
+  av1_rtcd();
 #endif  // CONFIG_VP10
   vpx_dsp_rtcd();
   vpx_scale_rtcd();