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 "vpx_ports/mem.h"
|
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
|
2013-03-05 23:12:16 +01:00
|
|
|
#include "vp9/decoder/vp9_dboolhuff.h"
|
|
|
|
|
2013-04-19 19:37:24 +02:00
|
|
|
int vp9_reader_init(vp9_reader *r, const uint8_t *buffer, size_t size) {
|
|
|
|
r->buffer_end = buffer + size;
|
|
|
|
r->buffer = buffer;
|
|
|
|
r->value = 0;
|
|
|
|
r->count = -8;
|
|
|
|
r->range = 255;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-15 23:54:19 +02:00
|
|
|
if (size && !buffer)
|
2012-07-14 00:21:29 +02:00
|
|
|
return 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-19 19:37:24 +02:00
|
|
|
vp9_reader_fill(r);
|
2012-07-14 00:21:29 +02:00
|
|
|
return 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-04-19 19:37:24 +02:00
|
|
|
void vp9_reader_fill(vp9_reader *r) {
|
|
|
|
const uint8_t *const buffer_end = r->buffer_end;
|
|
|
|
const uint8_t *buffer = r->buffer;
|
|
|
|
VP9_BD_VALUE value = r->value;
|
|
|
|
int count = r->count;
|
2013-02-21 22:50:15 +01:00
|
|
|
int shift = VP9_BD_VALUE_SIZE - 8 - (count + 8);
|
|
|
|
int loop_end = 0;
|
2013-04-15 23:54:19 +02:00
|
|
|
const int bits_left = (int)((buffer_end - buffer)*CHAR_BIT);
|
|
|
|
const int x = shift + CHAR_BIT - bits_left;
|
2010-05-05 23:58:19 +02:00
|
|
|
|
2013-02-21 22:50:15 +01:00
|
|
|
if (x >= 0) {
|
|
|
|
count += VP9_LOTS_OF_BITS;
|
|
|
|
loop_end = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x < 0 || bits_left) {
|
|
|
|
while (shift >= loop_end) {
|
|
|
|
count += CHAR_BIT;
|
2013-04-15 23:54:19 +02:00
|
|
|
value |= (VP9_BD_VALUE)*buffer++ << shift;
|
2013-02-21 22:50:15 +01:00
|
|
|
shift -= CHAR_BIT;
|
|
|
|
}
|
|
|
|
}
|
2010-05-05 23:58:19 +02:00
|
|
|
|
2013-04-19 19:37:24 +02:00
|
|
|
r->buffer = buffer;
|
|
|
|
r->value = value;
|
|
|
|
r->count = count;
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint8_t *vp9_reader_find_end(vp9_reader *r) {
|
|
|
|
// Find the end of the coded buffer
|
|
|
|
while (r->count > CHAR_BIT && r->count < VP9_BD_VALUE_SIZE) {
|
|
|
|
r->count -= CHAR_BIT;
|
|
|
|
r->buffer--;
|
|
|
|
}
|
|
|
|
return r->buffer;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-04-12 18:24:03 +02:00
|
|
|
|