mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Fix initialisers in dct-test.c.
Silences a warning when running fate on unusual platforms: libavcodec/dct-test.c:101:21: warning: missing braces around initializer [-Wmissing-braces] libavcodec/dct-test.c:101:21: warning: (near initialization for 'fdct_tab_arch[0]') [-Wmissing-braces] libavcodec/dct-test.c:102:21: warning: missing braces around initializer [-Wmissing-braces] libavcodec/dct-test.c:102:21: warning: (near initialization for 'idct_tab_arch[0]') [-Wmissing-braces]
This commit is contained in:
parent
0e406aba14
commit
392b4b663c
@ -98,8 +98,8 @@ static const struct algo idct_tab[] = {
|
|||||||
#elif ARCH_X86
|
#elif ARCH_X86
|
||||||
#include "x86/dct-test.c"
|
#include "x86/dct-test.c"
|
||||||
#else
|
#else
|
||||||
static const struct algo fdct_tab_arch[] = { 0 };
|
static const struct algo fdct_tab_arch[] = { { 0 } };
|
||||||
static const struct algo idct_tab_arch[] = { 0 };
|
static const struct algo idct_tab_arch[] = { { 0 } };
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define AANSCALE_BITS 12
|
#define AANSCALE_BITS 12
|
||||||
|
Loading…
Reference in New Issue
Block a user