tests/checkasm/vf_colorspace: Make bpp_mask const

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-04-13 18:54:17 +02:00
parent fa0f59d55d
commit 3c0511f29e
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ static const char *format_string[] = {
"444", "422", "420"
};
static unsigned bpp_mask[] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff };
static const unsigned bpp_mask[] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff };
static void check_yuv2yuv(void)
{