Browse Source

flacdec: silence several "warning: X may be used uninitialized in this function"

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Michael Niedermayer 13 years ago
parent
commit
fc0d069feb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flacdec.c

+ 1
- 1
libavcodec/flacdec.c View File

@@ -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++) {


Loading…
Cancel
Save