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
This commit is contained in:
reimar 2010-07-25 09:33:49 +00:00 committed by Uoti Urpala
parent 63cc56045a
commit 599647ff8c
1 changed files with 0 additions and 2 deletions

View File

@ -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);
}
}
}