Commit 89c3f5a9 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/takdec: use init_get_bits8()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 263da1a8
...@@ -99,7 +99,7 @@ static int tak_read_header(AVFormatContext *s) ...@@ -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; break;
case TAK_METADATA_MD5: { case TAK_METADATA_MD5: {
uint8_t md5[16]; uint8_t md5[16];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment