This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
svq1dec: replace /2 by >>1
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
Michael Niedermayer
14 years ago
parent
0257ac8f12
commit
8f5729d54d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/svq1dec.c
+ 1
- 1
libavcodec/svq1dec.c
View File
@@ -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()\
Write
Preview
Loading…
Cancel
Save