summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decoder.h
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-07-20 13:49:15 -0700
committerYaowu Xu <yaowu@google.com>2015-07-20 18:06:31 -0700
commitbf82514b541089f0a23d504c563d19ebcfdf3c02 (patch)
tree248e3697175cd347e442902b4343cd8532d7633f /vp9/decoder/vp9_decoder.h
parent149822e399087f4dd8e4e6efce9ad8d259d5ccea (diff)
downloadlibvpx-bf82514b541089f0a23d504c563d19ebcfdf3c02.tar
libvpx-bf82514b541089f0a23d504c563d19ebcfdf3c02.tar.gz
libvpx-bf82514b541089f0a23d504c563d19ebcfdf3c02.tar.bz2
libvpx-bf82514b541089f0a23d504c563d19ebcfdf3c02.zip
vpx_dsp/bitreader.h: vp9_->vpx_
Replace vp9_ in names to vpx_ as they are not codec specific. Change-Id: I2e583aa63dee769353ada4b42417aa15c4074ebb
Diffstat (limited to 'vp9/decoder/vp9_decoder.h')
-rw-r--r--vp9/decoder/vp9_decoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/decoder/vp9_decoder.h b/vp9/decoder/vp9_decoder.h
index 4eaf270b9..915f9dc8f 100644
--- a/vp9/decoder/vp9_decoder.h
+++ b/vp9/decoder/vp9_decoder.h
@@ -30,7 +30,7 @@ extern "C" {
// TODO(hkuang): combine this with TileWorkerData.
typedef struct TileData {
VP9_COMMON *cm;
- vp9_reader bit_reader;
+ vpx_reader bit_reader;
DECLARE_ALIGNED(16, MACROBLOCKD, xd);
/* dqcoeff are shared by all the planes. So planes must be decoded serially */
DECLARE_ALIGNED(16, tran_low_t, dqcoeff[32 * 32]);
@@ -38,7 +38,7 @@ typedef struct TileData {
typedef struct TileWorkerData {
struct VP9Decoder *pbi;
- vp9_reader bit_reader;
+ vpx_reader bit_reader;
FRAME_COUNTS counts;
DECLARE_ALIGNED(16, MACROBLOCKD, xd);
/* dqcoeff are shared by all the planes. So planes must be decoded serially */