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
bink: fix typo in FFALIGN() argument
tags/n0.11
Kostya Shishkov
14 years ago
parent
8ae28ac0f3
commit
1d10afd581
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/bink.c
+ 1
- 1
libavcodec/bink.c
View File
@@ -146,7 +146,7 @@ enum BlockTypes {
*/
static void init_lengths(BinkContext *c, int width, int bw)
{
width = FFALIGN(width,
7
);
width = FFALIGN(width,
8
);
c->bundle[BINK_SRC_BLOCK_TYPES].len = av_log2((width >> 3) + 511) + 1;
Write
Preview
Loading…
Cancel
Save