Make function static to not mess up tests.

This commit is contained in:
siivonek 2020-04-03 15:22:34 +02:00
parent e5267f7706
commit ee544304f1

View file

@ -1226,7 +1226,7 @@ static void normalize_lcu_weights(encoder_state_t * const state)
} }
// Check if lcu is edge lcu. Return false if frame dimensions are 64 divisible // Check if lcu is edge lcu. Return false if frame dimensions are 64 divisible
bool edge_lcu(int id, int lcus_x, int lcus_y, bool xdiv64, bool ydiv64) static bool edge_lcu(int id, int lcus_x, int lcus_y, bool xdiv64, bool ydiv64)
{ {
if (xdiv64 && ydiv64) { if (xdiv64 && ydiv64) {
return false; return false;