summaryrefslogtreecommitdiff
path: root/vp8/decoder/decodframe.c
diff options
context:
space:
mode:
authorAttila Nagy <attilanagy@google.com>2012-04-16 10:23:57 +0300
committerJohn Koleszar <jkoleszar@google.com>2012-05-04 10:42:21 -0700
commitf039a85fd820f9f010d32dd45fc82dddc3263783 (patch)
treea6ae381975c009c8e1d0dabca1a6664bab319c09 /vp8/decoder/decodframe.c
parent9f9cc8fe71429fe64603d5bc60f5b6097e68baaf (diff)
downloadlibvpx-f039a85fd820f9f010d32dd45fc82dddc3263783.tar
libvpx-f039a85fd820f9f010d32dd45fc82dddc3263783.tar.gz
libvpx-f039a85fd820f9f010d32dd45fc82dddc3263783.tar.bz2
libvpx-f039a85fd820f9f010d32dd45fc82dddc3263783.zip
Make global data const
Removes all runtime initialization of global data. This commit is a squashed version of the following series cherry-picked from master. This is necessary because of a change that was merged to the tester that depends on the scaler being moved to the RTCD framework, which is a worthwhile thing to include in Eider anyway. - a91b42f02 Makes all global data in entropy.c const - b35a0db0e Makes all global data in tokenize.c const - 441cac8ea Makes all mode token tables const - 5948a0210 Ports vpx_xcaler to new RTCD method - 317d4244c Makes all mode token tables const part 2 Change-Id: Ifeaea24df2b731e7c509fa6c6ef6891a374afc26
Diffstat (limited to 'vp8/decoder/decodframe.c')
-rw-r--r--vp8/decoder/decodframe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/vp8/decoder/decodframe.c b/vp8/decoder/decodframe.c
index 7dbde9e30..d2bb60270 100644
--- a/vp8/decoder/decodframe.c
+++ b/vp8/decoder/decodframe.c
@@ -21,7 +21,6 @@
#include "vp8/common/entropymode.h"
#include "vp8/common/quant_common.h"
#include "vpx_scale/vpxscale.h"
-#include "vpx_scale/yv12extend.h"
#include "vp8/common/setupintrarecon.h"
#include "decodemv.h"
@@ -1135,7 +1134,7 @@ int vp8_decode_frame(VP8D_COMP *pbi)
{
int i;
vp8mt_decode_mb_rows(pbi, xd);
- vp8_yv12_extend_frame_borders_ptr(&pc->yv12_fb[pc->new_fb_idx]); /*cm->frame_to_show);*/
+ vp8_yv12_extend_frame_borders(&pc->yv12_fb[pc->new_fb_idx]); /*cm->frame_to_show);*/
for (i = 0; i < pbi->decoding_thread_count; ++i)
corrupt_tokens |= pbi->mb_row_di[i].mbd.corrupted;
}