summaryrefslogtreecommitdiff
path: root/libavcodec/dca_lbr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-05-11 18:49:57 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-05-11 21:03:07 +0200
commitbf29794022db597f526a8575648244a7c6ee15ed (patch)
treec940ba99eeba4a3b8cb93452402a6efe7827d493 /libavcodec/dca_lbr.c
parentc71c3b9ff4f19a219f11c64f8bd923085ac1b823 (diff)
avcodec/dca_lbr: Fix "warning: missing braces around initializer"
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dca_lbr.c')
-rw-r--r--libavcodec/dca_lbr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca_lbr.c b/libavcodec/dca_lbr.c
index 81c40e930d..9a7f4cd819 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;