mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
svq1dec: replace /2 by >>1
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0257ac8f12
commit
8f5729d54d
@ -142,7 +142,7 @@ static const uint8_t string_table[256] = {
|
||||
break;\
|
||||
/* add child nodes */\
|
||||
list[n++] = list[i];\
|
||||
list[n++] = list[i] + (((level & 1) ? pitch : 1) << ((level / 2) + 1));\
|
||||
list[n++] = list[i] + (((level & 1) ? pitch : 1) << ((level >> 1) + 1));\
|
||||
}
|
||||
|
||||
#define SVQ1_ADD_CODEBOOK()\
|
||||
|
Loading…
Reference in New Issue
Block a user