Commit db28b01d authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Mans Rullgard

dirac: replace compound literal with normal initialiser

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent f61ce90c
......@@ -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;
......
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