mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
huffyuvdec: remove somewhat deprecated code
The old code was reserving the 0xFFFF entry to represent an inexisting entry/codeword. These entries are now detected through their length being <= 0. As this entry is often used for the residuals (-1,-1), which should be among the most frequent, it is particularly important to not reserve it. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
eb6f6f25dc
commit
29f427c239
@ -138,7 +138,6 @@ static int generate_joint_tables(HYuvContext *s)
|
||||
len[i] = len0 + len1;
|
||||
bits[i] = (s->bits[p0][y] << len1) + s->bits[p][u];
|
||||
symbols[i] = (y << 8) + (u & 0xFF);
|
||||
if(symbols[i] != 0xffff) // reserved to mean "invalid"
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user