2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "dboolhuff.h"
|
|
|
|
|
2011-02-04 22:00:00 +01:00
|
|
|
int vp8dx_start_decode(BOOL_DECODER *br,
|
|
|
|
const unsigned char *source,
|
2013-03-16 02:21:55 +01:00
|
|
|
unsigned int source_sz,
|
2013-06-13 21:16:58 +02:00
|
|
|
vp8_decrypt_cb *decrypt_cb,
|
|
|
|
void *decrypt_state)
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
2010-05-05 23:58:19 +02:00
|
|
|
br->user_buffer_end = source+source_sz;
|
|
|
|
br->user_buffer = source;
|
|
|
|
br->value = 0;
|
|
|
|
br->count = -8;
|
2010-05-18 17:58:33 +02:00
|
|
|
br->range = 255;
|
2013-06-13 21:16:58 +02:00
|
|
|
br->decrypt_cb = decrypt_cb;
|
|
|
|
br->decrypt_state = decrypt_state;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
if (source_sz && !source)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* Populate the buffer */
|
2011-02-04 22:00:00 +01:00
|
|
|
vp8dx_bool_decoder_fill(br);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-02-04 22:00:00 +01:00
|
|
|
void vp8dx_bool_decoder_fill(BOOL_DECODER *br)
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
2013-03-05 01:53:00 +01:00
|
|
|
const unsigned char *bufptr = br->user_buffer;
|
|
|
|
VP8_BD_VALUE value = br->value;
|
|
|
|
int count = br->count;
|
|
|
|
int shift = VP8_BD_VALUE_SIZE - 8 - (count + 8);
|
2013-06-13 21:16:58 +02:00
|
|
|
size_t bytes_left = br->user_buffer_end - bufptr;
|
|
|
|
size_t bits_left = bytes_left * CHAR_BIT;
|
2013-03-05 01:53:00 +01:00
|
|
|
int x = (int)(shift + CHAR_BIT - bits_left);
|
|
|
|
int loop_end = 0;
|
2013-06-13 21:16:58 +02:00
|
|
|
unsigned char decrypted[sizeof(VP8_BD_VALUE) + 1];
|
|
|
|
|
|
|
|
if (br->decrypt_cb) {
|
|
|
|
int n = bytes_left > sizeof(decrypted) ? sizeof(decrypted) : bytes_left;
|
|
|
|
br->decrypt_cb(br->decrypt_state, bufptr, decrypted, n);
|
|
|
|
bufptr = decrypted;
|
|
|
|
}
|
2013-03-05 01:53:00 +01:00
|
|
|
|
|
|
|
if(x >= 0)
|
|
|
|
{
|
|
|
|
count += VP8_LOTS_OF_BITS;
|
|
|
|
loop_end = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x < 0 || bits_left)
|
|
|
|
{
|
|
|
|
while(shift >= loop_end)
|
|
|
|
{
|
|
|
|
count += CHAR_BIT;
|
2013-06-13 21:16:58 +02:00
|
|
|
value |= (VP8_BD_VALUE)*bufptr << shift;
|
2013-03-16 02:21:55 +01:00
|
|
|
++bufptr;
|
2013-06-13 21:16:58 +02:00
|
|
|
++br->user_buffer;
|
2013-03-05 01:53:00 +01:00
|
|
|
shift -= CHAR_BIT;
|
|
|
|
}
|
|
|
|
}
|
2010-05-05 23:58:19 +02:00
|
|
|
|
|
|
|
br->value = value;
|
|
|
|
br->count = count;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|