diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2018-09-22 18:13:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-09-24 00:49:30 +0200 |
commit | 674727291b340f7ee8af0e2df2293e7ba4e249ba (patch) | |
tree | bee024a29cd1b34059540d48cf7e6f7031d0e809 | |
parent | a9485d7318d1354acc29006794ffcb85f7c3d6d6 (diff) | |
download | ffmpeg-674727291b340f7ee8af0e2df2293e7ba4e249ba.tar.gz |
avcodec/prosumer: Remove dead code
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/prosumer.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/prosumer.c b/libavcodec/prosumer.c index a2932852c9..e6959bfb6c 100644 --- a/libavcodec/prosumer.c +++ b/libavcodec/prosumer.c @@ -322,9 +322,6 @@ static void fill_lut(uint32_t *lut) uint32_t b = a & 0xFFu; uint32_t c, d, e; - if (b > 3) - continue; - c = (b << 16) | table[i-1]; d = 4 * (3 - b); e = (((0xFFF00000u << d) & a) >> 20) & 0xFFF; |