summaryrefslogtreecommitdiff
path: root/vp8/encoder/encodeframe.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2012-01-12 16:55:44 -0800
committerJohn Koleszar <jkoleszar@google.com>2012-01-30 12:08:28 -0800
commitfdb61a4531a626f100d422d7e7638b3f6eb09aef (patch)
treef0c2c3fee6cbaa925d25bbe59d4d9abc18973e7f /vp8/encoder/encodeframe.c
parentab77b4e8982740fe519ac116721c9c549ea60d31 (diff)
downloadlibvpx-fdb61a4531a626f100d422d7e7638b3f6eb09aef.tar
libvpx-fdb61a4531a626f100d422d7e7638b3f6eb09aef.tar.gz
libvpx-fdb61a4531a626f100d422d7e7638b3f6eb09aef.tar.bz2
libvpx-fdb61a4531a626f100d422d7e7638b3f6eb09aef.zip
RTCD: add recon functions
This commit continues the process of converting to the new RTCD system. Change-Id: I9bfcf9bef65c3d4ba0fb9a3e1532bad1463a10d6
Diffstat (limited to 'vp8/encoder/encodeframe.c')
-rw-r--r--vp8/encoder/encodeframe.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/vp8/encoder/encodeframe.c b/vp8/encoder/encodeframe.c
index da2472325..e2c826176 100644
--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -24,7 +24,6 @@
#include "rdopt.h"
#include "pickinter.h"
#include "vp8/common/findnearmv.h"
-#include "vp8/common/reconintra.h"
#include <stdio.h>
#include <limits.h>
#include "vp8/common/subpixel.h"
@@ -299,7 +298,7 @@ static void build_activity_map( VP8_COMP *cpi )
recon_yoffset += 16;
#endif
//Copy current mb to a buffer
- RECON_INVOKE(&xd->rtcd->recon, copy16x16)(x->src.y_buffer, x->src.y_stride, x->thismb, 16);
+ vp8_copy_mem16x16(x->src.y_buffer, x->src.y_stride, x->thismb, 16);
// measure activity
mb_activity = mb_activity_measure( cpi, x, mb_row, mb_col );
@@ -441,7 +440,7 @@ void encode_mb_row(VP8_COMP *cpi,
x->rdmult = cpi->RDMULT;
//Copy current mb to a buffer
- RECON_INVOKE(&xd->rtcd->recon, copy16x16)(x->src.y_buffer, x->src.y_stride, x->thismb, 16);
+ vp8_copy_mem16x16(x->src.y_buffer, x->src.y_stride, x->thismb, 16);
#if CONFIG_MULTITHREAD
if ((cpi->b_multi_threaded != 0) && (mb_row != 0))