Browse Source

dct-test: Fix initialization syntax

Related to "warning: suggest braces around initialization of subobject".
tags/n2.6
Vittorio Giovara 10 years ago
parent
commit
d89e58f539
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/dct-test.c

+ 2
- 2
libavcodec/dct-test.c 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


Loading…
Cancel
Save