diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-02-24 19:49:39 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-02-24 19:49:39 +0100 |
commit | e01c32f260fa66fc80d286527a02cce7ca940c00 (patch) | |
tree | db3978c60b1c7096b3967d394b769f4eacb634bd /libavcodec/scpr.c | |
parent | c583e701bd527eb9635bd8f1d22b06696b3e2b3d (diff) | |
download | ffmpeg-e01c32f260fa66fc80d286527a02cce7ca940c00.tar.gz |
avcodec/scpr: remove 4 dead store
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/scpr.c')
-rw-r--r-- | libavcodec/scpr.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/scpr.c b/libavcodec/scpr.c index 75e8ffab32..f3809f1c5b 100644 --- a/libavcodec/scpr.c +++ b/libavcodec/scpr.c @@ -321,8 +321,6 @@ static int decompress_i(AVCodecContext *avctx, uint32_t *dst, int linesize) if (ret < 0) return ret; - cx1 = (cx << 6) & 0xFC0; - cx = b >> cxshift; clr = (b << 16) + (g << 8) + r; } if (ptype > 5) @@ -537,8 +535,6 @@ static int decompress_p(AVCodecContext *avctx, if (ret < 0) return ret; - cx1 = (cx << 6) & 0xFC0; - cx = b >> cxshift; clr = (b << 16) + (g << 8) + r; } if (ptype > 5) |