From f00d157c125a5362b48037a2c65d2f0eee4f5f84 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Tue, 3 Dec 2013 17:59:32 -0800 Subject: Moving eob array to the encoder. In the decoder we don't need to save eobs, we can pass eob as an argument. That's why removing eob arrays from VP9Decompressor and TileWorkerData, and moving eob pointer from macroblockd_plane to macroblock_plane. Change-Id: I8eb919acc837acfb3abdd8319af63d1bbca8217a --- vp9/decoder/vp9_onyxd_if.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'vp9/decoder/vp9_onyxd_if.c') diff --git a/vp9/decoder/vp9_onyxd_if.c b/vp9/decoder/vp9_onyxd_if.c index 740ad72cb..25fb3d6d2 100644 --- a/vp9/decoder/vp9_onyxd_if.c +++ b/vp9/decoder/vp9_onyxd_if.c @@ -112,10 +112,8 @@ static void init_macroblockd(VP9D_COMP *const pbi) { struct macroblockd_plane *const pd = xd->plane; int i; - for (i = 0; i < MAX_MB_PLANE; ++i) { + for (i = 0; i < MAX_MB_PLANE; ++i) pd[i].dqcoeff = pbi->dqcoeff[i]; - pd[i].eobs = pbi->eobs[i]; - } } VP9D_PTR vp9_create_decompressor(VP9D_CONFIG *oxcf) { -- cgit v1.2.3