Commit 1f7acf3c authored by Michael Niedermayer's avatar Michael Niedermayer

vfilter/vf_scale: avoid using "{}"

Should fix compile issues with MSVC
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 953c7550
......@@ -190,7 +190,7 @@ static int query_formats(AVFilterContext *ctx)
static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
{
const static int32_t yuv2rgb_coeffs[8][4] = {
{},
{ 117504, 138453, 13954, 34903 },
{ 117504, 138453, 13954, 34903 }, /* ITU-R Rec. 709 (1990) */
{ 104597, 132201, 25675, 53279 }, /* unspecified */
{ 104597, 132201, 25675, 53279 }, /* reserved */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment