diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-13 08:24:00 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-02-13 19:20:52 +0100 |
commit | a8798c7eb934055d6aae51c6c7627559c33317d8 (patch) | |
tree | f6de760f9115328cd9839f5318104b0af25cc6ef /libavcodec/eatgv.c | |
parent | 5d561514b7bb435ce810c72d8502ed0186e51979 (diff) | |
download | ffmpeg-a8798c7eb934055d6aae51c6c7627559c33317d8.tar.gz |
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/eatgv.c')
-rw-r--r-- | libavcodec/eatgv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eatgv.c b/libavcodec/eatgv.c index ccdb35ef2b..025188bc89 100644 --- a/libavcodec/eatgv.c +++ b/libavcodec/eatgv.c @@ -64,7 +64,7 @@ static av_cold int tgv_decode_init(AVCodecContext *avctx){ */ static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst, int width, int height) { unsigned char *dst_end = dst + width*height; - int size, size1, size2, av_uninit(offset), run; + int size, size1, size2, offset, run; unsigned char *dst_start = dst; if (src[0] & 0x01) |