Browse Source

proresenc: initialise 'sign' variable

tags/n0.11
Kostya Shishkov 13 years ago
parent
commit
17b11ffec7
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/proresenc.c

+ 2
- 0
libavcodec/proresenc.c View File

@@ -265,6 +265,7 @@ static void encode_dcs(PutBitContext *pb, DCTELEM *blocks,

prev_dc = (blocks[0] - 0x4000) / scale;
encode_vlc_codeword(pb, FIRST_DC_CB, MAKE_CODE(prev_dc));
sign = 0;
codebook = 3;
blocks += 64;

@@ -409,6 +410,7 @@ static int estimate_dcs(int *error, DCTELEM *blocks, int blocks_per_slice,

prev_dc = (blocks[0] - 0x4000) / scale;
bits = estimate_vlc(FIRST_DC_CB, MAKE_CODE(prev_dc));
sign = 0;
codebook = 3;
blocks += 64;
*error += FFABS(blocks[0] - 0x4000) % scale;


Loading…
Cancel
Save