aacenctab: Use FF_ARRAY_ELEMS

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Reviewed-by: Ganesh Ajjanagadde <gajjanag@mit.edu>
This commit is contained in:
Timothy Gu 2015-08-22 04:07:09 +01:00 committed by Rostislav Pehlivanov
parent 531b0a316b
commit 5cbcf2b24d
1 changed files with 2 additions and 2 deletions

View File

@ -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);