Commit a427ed89 authored by jbr's avatar jbr

flacdec: Silence false positive warning about uninitialized variables in

decode_subframe_fixed(). Patch by Patrik Kullman (patrik A yes D nu).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17386 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7aeb4232
...@@ -276,7 +276,7 @@ static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order) ...@@ -276,7 +276,7 @@ static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order)
{ {
const int blocksize = s->blocksize; const int blocksize = s->blocksize;
int32_t *decoded = s->decoded[channel]; int32_t *decoded = s->decoded[channel];
int a, b, c, d, i; int av_uninit(a), av_uninit(b), av_uninit(c), av_uninit(d), i;
/* warm up samples */ /* warm up samples */
for (i = 0; i < pred_order; i++) { for (i = 0; i < pred_order; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment