summaryrefslogtreecommitdiff
path: root/vp8/encoder/encodeintra.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2010-06-07 07:42:22 -0700
committerCode Review <code-review@webmproject.org>2010-06-07 07:42:22 -0700
commit60254794bc0a799e4303cf54cd032ee3128d2fdf (patch)
tree60074619e4700c6e6dd7c1e7687ec098a3fbbb33 /vp8/encoder/encodeintra.c
parent7aa97a35b515bfb7d7bbcdee4db376f815343e44 (diff)
parent854c007a77b0e86b14caaf510f2e23f04e80fe1b (diff)
downloadlibvpx-60254794bc0a799e4303cf54cd032ee3128d2fdf.tar
libvpx-60254794bc0a799e4303cf54cd032ee3128d2fdf.tar.gz
libvpx-60254794bc0a799e4303cf54cd032ee3128d2fdf.tar.bz2
libvpx-60254794bc0a799e4303cf54cd032ee3128d2fdf.zip
Merge "Remove duplicate and unused functions"
Diffstat (limited to 'vp8/encoder/encodeintra.c')
-rw-r--r--vp8/encoder/encodeintra.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/vp8/encoder/encodeintra.c b/vp8/encoder/encodeintra.c
index 813efb990..d632bd85d 100644
--- a/vp8/encoder/encodeintra.c
+++ b/vp8/encoder/encodeintra.c
@@ -68,7 +68,7 @@ void vp8_encode_intra4x4block_rd(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x, BL
x->short_fdct4x4rd(be->src_diff, be->coeff, 32);
- x->quantize_brd(be, b);
+ x->quantize_b(be, b);
x->e_mbd.mbmi.mb_skip_coeff &= (!b->eob);
@@ -160,8 +160,7 @@ void vp8_encode_intra16x16mbyrd(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x)
x->e_mbd.mbmi.mb_skip_coeff = 1;
- vp8_quantize_mbyrd(x);
-
+ vp8_quantize_mby(x);
vp8_inverse_transform_mby(IF_RTCD(&rtcd->common->idct), &x->e_mbd);
@@ -227,9 +226,7 @@ void vp8_encode_intra16x16mbuvrd(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x)
vp8_transform_mbuvrd(x);
- vp8_quantize_mbuvrd(x);
-
-
+ vp8_quantize_mbuv(x);
vp8_inverse_transform_mbuv(IF_RTCD(&rtcd->common->idct), &x->e_mbd);