Rename motion_search.c to motion_search_facade.c

Renamed motion_search.c to motion_search_facade.c
for better representation of motion search wrapper
functions present in the file.

Change-Id: I62b642c5c4d11f294398b3e9dcca9772886781c2
diff --git a/av1/av1.cmake b/av1/av1.cmake
index ff1cad2..9d0624b 100644
--- a/av1/av1.cmake
+++ b/av1/av1.cmake
@@ -180,8 +180,8 @@
             "${AOM_ROOT}/av1/encoder/ml.c"
             "${AOM_ROOT}/av1/encoder/ml.h"
             "${AOM_ROOT}/av1/encoder/model_rd.h"
-            "${AOM_ROOT}/av1/encoder/motion_search.c"
-            "${AOM_ROOT}/av1/encoder/motion_search.h"
+            "${AOM_ROOT}/av1/encoder/motion_search_facade.c"
+            "${AOM_ROOT}/av1/encoder/motion_search_facade.h"
             "${AOM_ROOT}/av1/encoder/mv_prec.c"
             "${AOM_ROOT}/av1/encoder/mv_prec.h"
             "${AOM_ROOT}/av1/encoder/palette.c"
diff --git a/av1/encoder/compound_type.c b/av1/encoder/compound_type.c
index 8ae66b2..05d7c6a 100644
--- a/av1/encoder/compound_type.c
+++ b/av1/encoder/compound_type.c
@@ -12,7 +12,7 @@
 #include "av1/common/pred_common.h"
 #include "av1/encoder/compound_type.h"
 #include "av1/encoder/model_rd.h"
-#include "av1/encoder/motion_search.h"
+#include "av1/encoder/motion_search_facade.h"
 #include "av1/encoder/rdopt_utils.h"
 #include "av1/encoder/reconinter_enc.h"
 #include "av1/encoder/tx_search.h"
diff --git a/av1/encoder/motion_search.c b/av1/encoder/motion_search_facade.c
similarity index 99%
rename from av1/encoder/motion_search.c
rename to av1/encoder/motion_search_facade.c
index d2fa6de..de738d6 100644
--- a/av1/encoder/motion_search.c
+++ b/av1/encoder/motion_search_facade.c
@@ -11,7 +11,7 @@
 
 #include "av1/common/reconinter.h"
 #include "av1/encoder/encodemv.h"
-#include "av1/encoder/motion_search.h"
+#include "av1/encoder/motion_search_facade.h"
 #include "av1/encoder/reconinter_enc.h"
 
 void single_motion_search(const AV1_COMP *const cpi, MACROBLOCK *x,
diff --git a/av1/encoder/motion_search.h b/av1/encoder/motion_search_facade.h
similarity index 100%
rename from av1/encoder/motion_search.h
rename to av1/encoder/motion_search_facade.h
diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c
index 25117a9..fb82133 100644
--- a/av1/encoder/rdopt.c
+++ b/av1/encoder/rdopt.c
@@ -55,7 +55,7 @@
 #include "av1/encoder/ml.h"
 #include "av1/encoder/mode_prune_model_weights.h"
 #include "av1/encoder/model_rd.h"
-#include "av1/encoder/motion_search.h"
+#include "av1/encoder/motion_search_facade.h"
 #include "av1/encoder/palette.h"
 #include "av1/encoder/pustats.h"
 #include "av1/encoder/random.h"