mirror of https://git.ffmpeg.org/ffmpeg.git
tests/checkasm/vf_colorspace: Make bpp_mask const
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
fa0f59d55d
commit
3c0511f29e
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue