summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-04-11 14:50:11 -0700
committerDmitry Kovalev <dkovalev@google.com>2014-04-11 14:50:11 -0700
commitab3d8e6fc569ff7bc94080c4ce2d7ded13f4f234 (patch)
tree60ddcac8c79023be48c1df5cedc4ba378c72e43c /vp9
parent145b24719ab425fd6c8544b6fec54530695ce2dd (diff)
downloadlibvpx-ab3d8e6fc569ff7bc94080c4ce2d7ded13f4f234.tar
libvpx-ab3d8e6fc569ff7bc94080c4ce2d7ded13f4f234.tar.gz
libvpx-ab3d8e6fc569ff7bc94080c4ce2d7ded13f4f234.tar.bz2
libvpx-ab3d8e6fc569ff7bc94080c4ce2d7ded13f4f234.zip
Renaming VP9D_CONFIG to VP9DecoderConfig.
Change-Id: I9677aab1c7bb0ca9e989cb21348a3a2c926d8f5a
Diffstat (limited to 'vp9')
-rw-r--r--vp9/decoder/vp9_decoder.c2
-rw-r--r--vp9/decoder/vp9_decoder.h8
-rw-r--r--vp9/vp9_dx_iface.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/vp9/decoder/vp9_decoder.c b/vp9/decoder/vp9_decoder.c
index 56dbc99ed..faf710c24 100644
--- a/vp9/decoder/vp9_decoder.c
+++ b/vp9/decoder/vp9_decoder.c
@@ -110,7 +110,7 @@ void vp9_initialize_dec() {
}
}
-VP9Decoder *vp9_decoder_create(const VP9D_CONFIG *oxcf) {
+VP9Decoder *vp9_decoder_create(const VP9DecoderConfig *oxcf) {
VP9Decoder *const pbi = vpx_memalign(32, sizeof(*pbi));
VP9_COMMON *const cm = pbi ? &pbi->common : NULL;
diff --git a/vp9/decoder/vp9_decoder.h b/vp9/decoder/vp9_decoder.h
index b8250c2bb..800f5d337 100644
--- a/vp9/decoder/vp9_decoder.h
+++ b/vp9/decoder/vp9_decoder.h
@@ -27,20 +27,20 @@
extern "C" {
#endif
-typedef struct {
+typedef struct VP9DecoderConfig {
int width;
int height;
int version;
int max_threads;
int inv_tile_order;
-} VP9D_CONFIG;
+} VP9DecoderConfig;
typedef struct VP9Decoder {
DECLARE_ALIGNED(16, MACROBLOCKD, mb);
DECLARE_ALIGNED(16, VP9_COMMON, common);
- VP9D_CONFIG oxcf;
+ VP9DecoderConfig oxcf;
int64_t last_time_stamp;
int ready_for_new_data;
@@ -81,7 +81,7 @@ int vp9_get_reference_dec(struct VP9Decoder *pbi,
int index, YV12_BUFFER_CONFIG **fb);
-struct VP9Decoder *vp9_decoder_create(const VP9D_CONFIG *oxcf);
+struct VP9Decoder *vp9_decoder_create(const VP9DecoderConfig *oxcf);
void vp9_decoder_remove(struct VP9Decoder *pbi);
diff --git a/vp9/vp9_dx_iface.c b/vp9/vp9_dx_iface.c
index 5ed7484ab..1cd3b03d2 100644
--- a/vp9/vp9_dx_iface.c
+++ b/vp9/vp9_dx_iface.c
@@ -227,7 +227,7 @@ static void set_ppflags(const vpx_codec_alg_priv_t *ctx,
}
static void init_decoder(vpx_codec_alg_priv_t *ctx) {
- VP9D_CONFIG oxcf;
+ VP9DecoderConfig oxcf;
oxcf.width = ctx->si.w;
oxcf.height = ctx->si.h;
oxcf.version = 9;