Browse Source

bink: fix typo in FFALIGN() argument

tags/n0.11
Kostya Shishkov 14 years ago
parent
commit
1d10afd581
1 changed files with 1 additions and 1 deletions
  1. +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;



Loading…
Cancel
Save