From 58d2e70fc523a0e716902fd940a3bb4f8a7e8f0f Mon Sep 17 00:00:00 2001 From: Yunqing Wang Date: Mon, 7 Feb 2011 08:21:14 -0500 Subject: [PATCH] Fix link error in real-time mode make vp8_mv_pred() and vp8_cal_sad() available in real-time mode. Change-Id: I71dbae241b486ba943458dcbae552ec4a51689d3 --- vp8/encoder/rdopt.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c index 1ece1bf..ea21cf4 100644 --- a/vp8/encoder/rdopt.c +++ b/vp8/encoder/rdopt.c @@ -1419,6 +1419,7 @@ static int vp8_rd_pick_best_mbsegmentation(VP8_COMP *cpi, MACROBLOCK *x, return bsi.segment_rd; } +#endif static void swap(int *x,int *y) { @@ -1706,6 +1707,7 @@ void vp8_cal_sad(VP8_COMP *cpi, MACROBLOCKD *xd, MACROBLOCK *x, int recon_yoffse } } +#if !(CONFIG_REALTIME_ONLY) int vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int recon_uvoffset, int *returnrate, int *returndistortion, int *returnintra) { BLOCK *b = &x->block[0]; -- 2.7.4