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/msrledec.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/msrledec.c')
-rw-r--r-- | libavcodec/msrledec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/msrledec.c b/libavcodec/msrledec.c index 4714772a20..9854d82fb4 100644 --- a/libavcodec/msrledec.c +++ b/libavcodec/msrledec.c @@ -134,8 +134,8 @@ static int msrle_decode_8_16_24_32(AVCodecContext *avctx, AVPicture *pic, int de uint8_t *output, *output_end; const uint8_t* src = data; int p1, p2, line=avctx->height - 1, pos=0, i; - uint16_t av_uninit(pix16); - uint32_t av_uninit(pix32); + uint16_t pix16; + uint32_t pix32; unsigned int width= FFABS(pic->linesize[0]) / (depth >> 3); output = pic->data[0] + (avctx->height - 1) * pic->linesize[0]; |