Commit 32759812 authored by Paul B Mahol's avatar Paul B Mahol

libopenjpegdec: make use of FF_ARRAY_ELEMS

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 695e85f1
...@@ -92,19 +92,19 @@ static inline enum PixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *imag ...@@ -92,19 +92,19 @@ static inline enum PixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *imag
switch (image->color_space) { switch (image->color_space) {
case CLRSPC_SRGB: case CLRSPC_SRGB:
possible_fmts = libopenjpeg_rgb_pix_fmts; possible_fmts = libopenjpeg_rgb_pix_fmts;
possible_fmts_nb = sizeof(libopenjpeg_rgb_pix_fmts) / sizeof(enum PixelFormat); possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_rgb_pix_fmts);
break; break;
case CLRSPC_GRAY: case CLRSPC_GRAY:
possible_fmts = libopenjpeg_gray_pix_fmts; possible_fmts = libopenjpeg_gray_pix_fmts;
possible_fmts_nb = sizeof(libopenjpeg_gray_pix_fmts) / sizeof(enum PixelFormat); possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_gray_pix_fmts);
break; break;
case CLRSPC_SYCC: case CLRSPC_SYCC:
possible_fmts = libopenjpeg_yuv_pix_fmts; possible_fmts = libopenjpeg_yuv_pix_fmts;
possible_fmts_nb = sizeof(libopenjpeg_yuv_pix_fmts) / sizeof(enum PixelFormat); possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_yuv_pix_fmts);
break; break;
default: default:
possible_fmts = libopenjpeg_all_pix_fmts; possible_fmts = libopenjpeg_all_pix_fmts;
possible_fmts_nb = sizeof(libopenjpeg_all_pix_fmts) / sizeof(enum PixelFormat); possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_all_pix_fmts);
break; break;
} }
......
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