summaryrefslogtreecommitdiff
path: root/vp9/decoder
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2014-02-28 15:41:53 -0800
committerYaowu Xu <yaowu@google.com>2014-03-01 10:59:24 -0800
commit2f4eb5f0966f45e824650fb7ad40442e6cda6fc4 (patch)
tree1ee55e00e9012caaec6ae30ebcb2b2e38cf7e5bb /vp9/decoder
parent3678ed36b9f331c5ae3dc5af228deeafaa566839 (diff)
downloadlibvpx-2f4eb5f0966f45e824650fb7ad40442e6cda6fc4.tar
libvpx-2f4eb5f0966f45e824650fb7ad40442e6cda6fc4.tar.gz
libvpx-2f4eb5f0966f45e824650fb7ad40442e6cda6fc4.tar.bz2
libvpx-2f4eb5f0966f45e824650fb7ad40442e6cda6fc4.zip
Remove vp9_create_common()
The function has evolved over time, now only calls vp9_rtcd(), so this commit removes the function and changes to call vp9_rtcd() directly. Change-Id: I8cfa6190daa4b28f6f3d1e11bb3a07f9c95322bf
Diffstat (limited to 'vp9/decoder')
-rw-r--r--vp9/decoder/vp9_onyxd_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/decoder/vp9_onyxd_if.c b/vp9/decoder/vp9_onyxd_if.c
index 1d3522e13..5ebfcee33 100644
--- a/vp9/decoder/vp9_onyxd_if.c
+++ b/vp9/decoder/vp9_onyxd_if.c
@@ -138,7 +138,7 @@ VP9D_PTR vp9_create_decompressor(VP9D_CONFIG *oxcf) {
cm->error.setjmp = 1;
vp9_initialize_dec();
- vp9_create_common(cm);
+ vp9_rtcd();
pbi->oxcf = *oxcf;
pbi->ready_for_new_data = 1;