diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-08 23:05:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-08 23:05:25 +0100 |
commit | a4524930d9299dbb8fafe165105d83bf7b6d3b89 (patch) | |
tree | 031a72ea35f62189f79b940a2bcdbd213560ff3a /libavcodec/qpeg.c | |
parent | 4916a8fc44e8bb0c3e6bd8619b4b5b87b75bbb71 (diff) | |
download | ffmpeg-a4524930d9299dbb8fafe165105d83bf7b6d3b89.tar.gz |
qpeg: remove unused var from decode_frame()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/qpeg.c')
-rw-r--r-- | libavcodec/qpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index a0ddfae647..caf28e3fbc 100644 --- a/libavcodec/qpeg.c +++ b/libavcodec/qpeg.c @@ -257,7 +257,7 @@ static int decode_frame(AVCodecContext *avctx, AVFrame * p = &a->pic; AVFrame * ref= &a->ref; uint8_t* outdata; - int delta, ret = 0; + int delta; const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL); if (avpkt->size < 0x86) { |