From: Yaowu Xu Date: Mon, 31 Oct 2016 23:33:36 +0000 (-0700) Subject: Rename av1_convolve.[hc] to convolve.[hc] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6557ea9fe280d3e8712561bbd674ecc8291f2016;p=libvpx Rename av1_convolve.[hc] to convolve.[hc] Change-Id: I2047adc4c147201ce0ce3c533fe2861cbff1002c --- diff --git a/av1/av1_common.mk b/av1/av1_common.mk index 38fb6fd95..43b76ad62 100644 --- a/av1/av1_common.mk +++ b/av1/av1_common.mk @@ -78,8 +78,8 @@ ifeq ($(CONFIG_AOM_HIGHBITDEPTH),yes) AV1_COMMON_SRCS-$(HAVE_SSE4_1) += common/x86/av1_highbd_convolve_sse4.c AV1_COMMON_SRCS-$(HAVE_SSE4_1) += common/x86/av1_highbd_convolve_filters_sse4.h endif -AV1_COMMON_SRCS-yes += common/av1_convolve.c -AV1_COMMON_SRCS-yes += common/av1_convolve.h +AV1_COMMON_SRCS-yes += common/convolve.c +AV1_COMMON_SRCS-yes += common/convolve.h AV1_COMMON_SRCS-$(CONFIG_LOOP_RESTORATION) += common/restoration.h AV1_COMMON_SRCS-$(CONFIG_LOOP_RESTORATION) += common/restoration.c ifeq (yes,$(filter $(CONFIG_GLOBAL_MOTION) $(CONFIG_WARPED_MOTION),yes)) diff --git a/av1/common/av1_convolve.c b/av1/common/convolve.c similarity index 99% rename from av1/common/av1_convolve.c rename to av1/common/convolve.c index 270ab706f..eef629e16 100644 --- a/av1/common/av1_convolve.c +++ b/av1/common/convolve.c @@ -13,7 +13,7 @@ #include #include "./av1_rtcd.h" -#include "av1/common/av1_convolve.h" +#include "av1/common/convolve.h" #include "av1/common/filter.h" #include "aom_dsp/aom_dsp_common.h" #include "aom_ports/mem.h" diff --git a/av1/common/av1_convolve.h b/av1/common/convolve.h similarity index 100% rename from av1/common/av1_convolve.h rename to av1/common/convolve.h diff --git a/av1/common/reconinter.h b/av1/common/reconinter.h index d3863ee8e..13f581e18 100644 --- a/av1/common/reconinter.h +++ b/av1/common/reconinter.h @@ -14,7 +14,7 @@ #include "av1/common/filter.h" #include "av1/common/onyxc_int.h" -#include "av1/common/av1_convolve.h" +#include "av1/common/convolve.h" #include "aom/aom_integer.h" #ifdef __cplusplus diff --git a/test/av1_convolve_test.cc b/test/av1_convolve_test.cc index 435e106f4..0324b8e9c 100644 --- a/test/av1_convolve_test.cc +++ b/test/av1_convolve_test.cc @@ -15,7 +15,7 @@ #include "./aom_dsp_rtcd.h" #include "test/acm_random.h" #include "av1/common/filter.h" -#include "av1/common/av1_convolve.h" +#include "av1/common/convolve.h" #include "aom_dsp/aom_dsp_common.h" #include "aom_ports/mem.h"