summaryrefslogtreecommitdiffstats
path: root/spudec.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-07-25 09:33:49 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:14:45 +0200
commit599647ff8c6377109f8ce323eec9da59a3ad53f0 (patch)
treeb8014c4cfc9c728d129acc46b076e77d4347e74b /spudec.c
parent63cc56045ad1d3051ea9ae408c044fa28afa35d1 (diff)
downloadmpv-599647ff8c6377109f8ce323eec9da59a3ad53f0.tar.bz2
mpv-599647ff8c6377109f8ce323eec9da59a3ad53f0.tar.xz
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
Diffstat (limited to 'spudec.c')
-rw-r--r--spudec.c2
1 files changed, 0 insertions, 2 deletions
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);
}
}
}