Commit e0b855f6 authored by Eli Friedman's avatar Eli Friedman Committed by Benoit Fouet

Remove a useless variable in zmbv decoder.

Patch by Eli.Friedman (gmail)

Originally committed as revision 24104 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a26f1d10
...@@ -397,7 +397,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac ...@@ -397,7 +397,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
const uint8_t *buf = avpkt->data; const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size; int buf_size = avpkt->size;
ZmbvContext * const c = avctx->priv_data; ZmbvContext * const c = avctx->priv_data;
uint8_t *outptr;
int zret = Z_OK; // Zlib return code int zret = Z_OK; // Zlib return code
int len = buf_size; int len = buf_size;
int hi_ver, lo_ver; int hi_ver, lo_ver;
...@@ -412,8 +411,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac ...@@ -412,8 +411,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
return -1; return -1;
} }
outptr = c->pic.data[0]; // Output image pointer
/* parse header */ /* parse header */
c->flags = buf[0]; c->flags = buf[0];
buf++; len--; buf++; len--;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment