Commit e01c32f2 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/scpr: remove 4 dead store

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent c583e701
...@@ -321,8 +321,6 @@ static int decompress_i(AVCodecContext *avctx, uint32_t *dst, int linesize) ...@@ -321,8 +321,6 @@ static int decompress_i(AVCodecContext *avctx, uint32_t *dst, int linesize)
if (ret < 0) if (ret < 0)
return ret; return ret;
cx1 = (cx << 6) & 0xFC0;
cx = b >> cxshift;
clr = (b << 16) + (g << 8) + r; clr = (b << 16) + (g << 8) + r;
} }
if (ptype > 5) if (ptype > 5)
...@@ -537,8 +535,6 @@ static int decompress_p(AVCodecContext *avctx, ...@@ -537,8 +535,6 @@ static int decompress_p(AVCodecContext *avctx,
if (ret < 0) if (ret < 0)
return ret; return ret;
cx1 = (cx << 6) & 0xFC0;
cx = b >> cxshift;
clr = (b << 16) + (g << 8) + r; clr = (b << 16) + (g << 8) + r;
} }
if (ptype > 5) if (ptype > 5)
......
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