Commit 396e441d authored by banan's avatar banan

Remove dead nested assignment found by CSA

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18784 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7ba6c31f
...@@ -117,7 +117,6 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void ...@@ -117,7 +117,6 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void
AVFrame * const p = &c->pic; AVFrame * const p = &c->pic;
uint8_t *src, *prev; uint8_t *src, *prev;
uint32_t *palptr; uint32_t *palptr;
int zret = Z_OK;
int len = 0; int len = 0;
int keyframe, chpal; int keyframe, chpal;
int fl; int fl;
...@@ -226,7 +225,7 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void ...@@ -226,7 +225,7 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void
c->zstream.next_out = c->comp_buf; c->zstream.next_out = c->comp_buf;
c->zstream.avail_out = c->comp_size; c->zstream.avail_out = c->comp_size;
c->zstream.total_out = 0; c->zstream.total_out = 0;
if((zret = deflate(&c->zstream, Z_SYNC_FLUSH)) != Z_OK){ if(deflate(&c->zstream, Z_SYNC_FLUSH) != Z_OK){
av_log(avctx, AV_LOG_ERROR, "Error compressing data\n"); av_log(avctx, AV_LOG_ERROR, "Error compressing data\n");
return -1; return -1;
} }
......
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