Browse Source

qpeg: remove unused var from decode_frame()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
a4524930d9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/qpeg.c

+ 1
- 1
libavcodec/qpeg.c View File

@@ -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) {


Loading…
Cancel
Save