Commit 5cbcf2b2 authored by Timothy Gu's avatar Timothy Gu Committed by Rostislav Pehlivanov

aacenctab: Use FF_ARRAY_ELEMS

Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
Reviewed-by: 's avatarGanesh Ajjanagadde <gajjanag@mit.edu>
parent 531b0a31
......@@ -104,5 +104,5 @@ const uint8_t *swb_size_1024[] = {
swb_size_1024_8
};
const int swb_size_128_len = sizeof(swb_size_128)/sizeof(*swb_size_128);
const int swb_size_1024_len = sizeof(swb_size_1024)/sizeof(*swb_size_1024);
const int swb_size_128_len = FF_ARRAY_ELEMS(swb_size_128);
const int swb_size_1024_len = FF_ARRAY_ELEMS(swb_size_1024);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment