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/qtrleenc.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/qtrleenc.c')
-rw-r--r-- | libavcodec/qtrleenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qtrleenc.c b/libavcodec/qtrleenc.c index ede03d2f78..3ffce2bc7f 100644 --- a/libavcodec/qtrleenc.c +++ b/libavcodec/qtrleenc.c @@ -120,7 +120,7 @@ static void qtrle_encode_line(QtrleEncContext *s, AVFrame *p, int line, uint8_t unsigned int skipcount; /* This will be the number of consecutive equal pixels in the current * frame, starting from the ith one also */ - unsigned int av_uninit(repeatcount); + unsigned int repeatcount; /* The cost of the three different possibilities */ int total_bulk_cost; |