summaryrefslogtreecommitdiff
path: root/libavcodec/flacdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-04 22:50:16 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-04 22:59:02 +0100
commitfc0d069feb690db8d36cb7bcec62891f160d250a (patch)
tree40f3dd094f6d11681cfe7d310894a46b73d24e83 /libavcodec/flacdec.c
parent96a08d8627301dae41a7697ea4346cc9981df17c (diff)
flacdec: silence several "warning: X may be used uninitialized in this function"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r--libavcodec/flacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index eb75729964..0e887e6f89 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -254,7 +254,7 @@ static int decode_subframe_fixed(FLACContext *s, int32_t *decoded,
int pred_order, int bps)
{
const int blocksize = s->blocksize;
- int a, b, c, d, i;
+ int av_uninit(a), av_uninit(b), av_uninit(c), av_uninit(d), i;
/* warm up samples */
for (i = 0; i < pred_order; i++) {