[FFmpeg-cvslog] avcodec/dca_lbr: Fix "warning: missing braces around initializer"
Michael Niedermayer
git at videolan.org
Wed May 11 21:09:38 CEST 2016
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed May 11 18:49:57 2016 +0200| [bf29794022db597f526a8575648244a7c6ee15ed] | committer: Michael Niedermayer
avcodec/dca_lbr: Fix "warning: missing braces around initializer"
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bf29794022db597f526a8575648244a7c6ee15ed
---
libavcodec/dca_lbr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dca_lbr.c b/libavcodec/dca_lbr.c
index 81c40e9..9a7f4cd 100644
--- a/libavcodec/dca_lbr.c
+++ b/libavcodec/dca_lbr.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list