diff options
author | Patrik Kullman <patrik@yes.nu> | 2009-02-16 22:23:47 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-02-16 22:23:47 +0000 |
commit | 7846418bdb346c344fe9ff9801a820f0cd470212 (patch) | |
tree | 038e643c9aaa6b3dcd8c5d64b7f097b18d08198f | |
parent | 037c08d6cd699fe7791d38bdccbde59bb1c08e15 (diff) | |
download | ffmpeg-7846418bdb346c344fe9ff9801a820f0cd470212.tar.gz |
flacdec: Silence false positive warning about uninitialized variables in
decode_subframe_fixed(). Patch by Patrik Kullman (patrik A yes D nu).
Originally committed as revision 17386 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/flacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index d8ba07bc1d..d6e0c8620f 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -276,7 +276,7 @@ static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order) { const int blocksize = s->blocksize; 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 */ for (i = 0; i < pred_order; i++) { |