From 599647ff8c6377109f8ce323eec9da59a3ad53f0 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 25 Jul 2010 09:33:49 +0000 Subject: spudec.c: Remove a useless condition check It's already handled a few lines further down (the len == 0 check). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31798 b3059339-0415-0410-9bf9-f77b7e298cf2 --- spudec.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'spudec.c') diff --git a/spudec.c b/spudec.c index 8a85e6c81b..4d26323d11 100644 --- a/spudec.c +++ b/spudec.c @@ -303,8 +303,6 @@ static void spudec_process_data(spudec_handle_t *this, packet_t *packet) rle = (rle << 4) | get_nibble(packet); if (rle < 0x040) { rle = (rle << 4) | get_nibble(packet); - if (rle < 0x0004) - rle |= ((this->width - x) << 2); } } } -- cgit v1.2.3