Cleanup functions that should be marked static
This is a followup to change 180c0cdb6992eb822bbe2273ed1b2f4bbde16532,
marking functions found using the command listed in aomedia:1540 as
static.
BUG=aomedia:1540,aomedia:2196
Change-Id: I4028461cb8328a8f7770d080ef7d22e86d62b927
diff --git a/av1/common/thread_common.c b/av1/common/thread_common.c
index 064cd67..258a8d5 100644
--- a/av1/common/thread_common.c
+++ b/av1/common/thread_common.c
@@ -243,7 +243,7 @@
}
}
-AV1LfMTInfo *get_lf_job_info(AV1LfSync *lf_sync) {
+static AV1LfMTInfo *get_lf_job_info(AV1LfSync *lf_sync) {
AV1LfMTInfo *cur_job_info = NULL;
#if CONFIG_MULTITHREAD
@@ -767,7 +767,7 @@
}
}
-AV1LrMTInfo *get_lr_job_info(AV1LrSync *lr_sync) {
+static AV1LrMTInfo *get_lr_job_info(AV1LrSync *lr_sync) {
AV1LrMTInfo *cur_job_info = NULL;
#if CONFIG_MULTITHREAD