vpx_scale_test.h: remove #if from inside macro

fixes visual studio error

Change-Id: I86206f17ca951b15e247c1b92561847d8c21ec7a
This commit is contained in:
James Zern 2017-09-08 00:06:25 -07:00
parent 43cbdc216d
commit d7caee2170

View File

@ -50,11 +50,13 @@ class VpxScaleBase {
void ResetScaleImage(YV12_BUFFER_CONFIG *const img, const int width,
const int height) {
memset(img, 0, sizeof(*img));
ASSERT_EQ(0, vpx_alloc_frame_buffer(img, width, height, 1, 1,
#if CONFIG_VP9_HIGHBITDEPTH
0,
#endif
ASSERT_EQ(0, vpx_alloc_frame_buffer(img, width, height, 1, 1, 0,
VP9_ENC_BORDER_IN_PIXELS, 0));
#else
ASSERT_EQ(0, vpx_alloc_frame_buffer(img, width, height, 1, 1,
VP9_ENC_BORDER_IN_PIXELS, 0));
#endif
memset(img->buffer_alloc, kBufFiller, img->frame_size);
}