1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

dct-test: Fix initialization syntax

Related to "warning: suggest braces around initialization of subobject".
This commit is contained in:
Vittorio Giovara
2015-02-06 18:38:44 +00:00
parent bb7701684c
commit d89e58f539

View File

@@ -84,8 +84,8 @@ static const struct algo idct_tab[] = {
#elif ARCH_X86
#include "x86/dct-test.c"
#else
static const struct algo fdct_tab_arch[] = { 0 };
static const struct algo idct_tab_arch[] = { 0 };
static const struct algo fdct_tab_arch[] = { { 0 } };
static const struct algo idct_tab_arch[] = { { 0 } };
#endif
#define AANSCALE_BITS 12