aom: cdef_block.c: make cdef_directions_padded[] static

From 172161d87fc5d0e1b8aeab089a928f0adea75326 Mon Sep 17 00:00:00 2001
From: James Zern <[EMAIL REDACTED]>
Date: Tue, 20 Aug 2024 18:50:54 -0700
Subject: [PATCH] cdef_block.c: make cdef_directions_padded[] static

This table is only used to populate cdef_directions[] within the file.

Bug: aomedia:3416
Change-Id: Iba6fa1ba461ea16d0eff3c2a5ca43cc7afbe0a55
---
 av1/common/cdef_block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/av1/common/cdef_block.c b/av1/common/cdef_block.c
index 318779bed..3822ba14c 100644
--- a/av1/common/cdef_block.c
+++ b/av1/common/cdef_block.c
@@ -22,7 +22,7 @@ beginning and end of the table. The cdef direction range is [0, 7] and the
 first index is offset +/-2. This removes the need to constrain the first
 index to the same range using e.g., & 7.
 */
-DECLARE_ALIGNED(16, const int, cdef_directions_padded[12][2]) = {
+DECLARE_ALIGNED(16, static const int, cdef_directions_padded[12][2]) = {
   /* Padding: cdef_directions[6] */
   { 1 * CDEF_BSTRIDE + 0, 2 * CDEF_BSTRIDE + 0 },
   /* Padding: cdef_directions[7] */