summaryrefslogtreecommitdiff
path: root/vp8
diff options
context:
space:
mode:
Diffstat (limited to 'vp8')
-rw-r--r--vp8/common/onyxd.h2
-rw-r--r--vp8/decoder/onyxd_if.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/vp8/common/onyxd.h b/vp8/common/onyxd.h
index a52af6b62..801ef87b2 100644
--- a/vp8/common/onyxd.h
+++ b/vp8/common/onyxd.h
@@ -54,7 +54,7 @@ vpx_codec_err_t vp8dx_get_reference(struct VP8D_COMP *pbi,
vpx_codec_err_t vp8dx_set_reference(struct VP8D_COMP *pbi,
enum vpx_ref_frame_type ref_frame_flag,
YV12_BUFFER_CONFIG *sd);
-int vp8dx_get_quantizer(const struct VP8D_COMP *cpi);
+int vp8dx_get_quantizer(const struct VP8D_COMP *pbi);
#ifdef __cplusplus
}
diff --git a/vp8/decoder/onyxd_if.c b/vp8/decoder/onyxd_if.c
index f516eb0c7..ddcc54621 100644
--- a/vp8/decoder/onyxd_if.c
+++ b/vp8/decoder/onyxd_if.c
@@ -471,6 +471,6 @@ int vp8_remove_decoder_instances(struct frame_buffers *fb) {
return VPX_CODEC_OK;
}
-int vp8dx_get_quantizer(const VP8D_COMP *cpi) {
- return cpi->common.base_qindex;
+int vp8dx_get_quantizer(const VP8D_COMP *pbi) {
+ return pbi->common.base_qindex;
}