From db28b01dcf089f7f470def6b3a482a88908893d8 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 18 Jun 2012 12:57:25 +0100 Subject: dirac: replace compound literal with normal initialiser Signed-off-by: Mans Rullgard --- libavcodec/dirac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dirac.c') diff --git a/libavcodec/dirac.c b/libavcodec/dirac.c index bf56088c75..07329e3f4d 100644 --- a/libavcodec/dirac.c +++ b/libavcodec/dirac.c @@ -108,7 +108,7 @@ static const enum PixelFormat dirac_pix_fmt[2][3] = { static int parse_source_parameters(AVCodecContext *avctx, GetBitContext *gb, dirac_source_params *source) { - AVRational frame_rate = (AVRational){0,0}; + AVRational frame_rate = {0,0}; unsigned luma_depth = 8, luma_offset = 16; int idx; -- cgit v1.2.3