summaryrefslogtreecommitdiff
path: root/libavcodec/flacdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-02-13 08:24:00 +0100
committerDiego Biurrun <diego@biurrun.de>2012-02-13 19:20:52 +0100
commita8798c7eb934055d6aae51c6c7627559c33317d8 (patch)
treef6de760f9115328cd9839f5318104b0af25cc6ef /libavcodec/flacdec.c
parent5d561514b7bb435ce810c72d8502ed0186e51979 (diff)
Drop unnecessary av_uninit attributes from some variable declarations.
Recent versions of gcc (4.4+) no longer give false positive warnings.
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 58eb66def9..2b7f7eeb9e 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -288,7 +288,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 av_uninit(a), av_uninit(b), av_uninit(c), av_uninit(d), i;
+ int a, b, c, d, i;
/* warm up samples */
for (i = 0; i < pred_order; i++) {