Commit 800ab1ba authored by Mans Rullgard's avatar Mans Rullgard

rl2: remove dead assignment

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 1c2c64ed
......@@ -64,7 +64,7 @@ static void rl2_rle_decode(Rl2Context *s,const unsigned char* in,int size,
const unsigned char* back_frame = s->back_frame;
const unsigned char* in_end = in + size;
const unsigned char* out_end = out + stride * s->avctx->height;
unsigned char* line_end = out + s->avctx->width;
unsigned char* line_end;
/** copy start of the background frame */
for(i=0;i<=base_y;i++){
......
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