Skip to content

Commit

Permalink
IMAGE: Fix leading spaces into tabs in Indeo decoders
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Sep 11, 2016
1 parent 2f7da2d commit a5f4366
Show file tree
Hide file tree
Showing 10 changed files with 1,521 additions and 1,530 deletions.
8 changes: 4 additions & 4 deletions image/codecs/indeo/get_bits.cpp
Expand Up @@ -27,12 +27,12 @@ namespace Indeo {

int GetBits::getVLC2(int16 (*table)[2], int bits, int maxDepth) {
int code;
int n, nbBits;
unsigned int index;
int n, nbBits;
unsigned int index;

index = peekBits(bits);
code = table[index][0];
n = table[index][1];
code = table[index][0];
n = table[index][1];

if (maxDepth > 1 && n < 0) {
skip(bits);
Expand Down

0 comments on commit a5f4366

Please sign in to comment.