Browse Source

avformat/takdec: use init_get_bits8()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 12 years ago
parent
commit
89c3f5a907
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/takdec.c

+ 1
- 1
libavformat/takdec.c View File

@@ -99,7 +99,7 @@ static int tak_read_header(AVFormatContext *s)
}
}

init_get_bits(&gb, buffer, (size - 3) * 8);
init_get_bits8(&gb, buffer, size - 3);
break;
case TAK_METADATA_MD5: {
uint8_t md5[16];


Loading…
Cancel
Save