Browse Source

avcodec/dca_lbr: Fix "warning: missing braces around initializer"

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Michael Niedermayer 9 years ago
parent
commit
bf29794022
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dca_lbr.c

+ 1
- 1
libavcodec/dca_lbr.c View File

@@ -1161,7 +1161,7 @@ int ff_dca_lbr_parse(DCALbrDecoder *s, uint8_t *data, DCAExssAsset *asset)
LBRChunk hr_grid[DCA_LBR_CHANNELS / 2];
LBRChunk ts1[DCA_LBR_CHANNELS / 2];
LBRChunk ts2[DCA_LBR_CHANNELS / 2];
} chunk = { 0 };
} chunk = { {0} };

GetByteContext gb;



Loading…
Cancel
Save