mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-06 23:04:54 +00:00
avcodec/scpr: remove 4 dead store
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
c583e701bd
commit
e01c32f260
@ -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,
|
|||||||
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user