Browse Source

indeo3: Check remaining bits in parse_bintree()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 13 years ago
parent
commit
e9e642cbfb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/indeo3.c

+ 2
- 2
libavcodec/indeo3.c View File

@@ -736,7 +736,7 @@ static int parse_bintree(Indeo3DecodeContext *ctx, AVCodecContext *avctx,
ref_cell->width -= curr_cell.width;
}

while (1) { /* loop until return */
while (get_bits_left(&ctx->gb) >= 2) { /* loop until return */
RESYNC_BITSTREAM;
switch (code = get_bits(&ctx->gb, 2)) {
case H_SPLIT:
@@ -789,7 +789,7 @@ static int parse_bintree(Indeo3DecodeContext *ctx, AVCodecContext *avctx,
}
}//while

return 0;
return AVERROR_INVALIDDATA;
}




Loading…
Cancel
Save