summaryrefslogtreecommitdiff
path: root/vp8/encoder/rdopt.c
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2012-02-24 23:27:59 +0000
committerPaul Wilkins <paulwilkins@google.com>2012-02-24 23:38:36 +0000
commit3cc5b92c6516aac4c3f9bf27974bd8543b286251 (patch)
treeba7837454980062108ce82f7583dd76bf8c0b1b2 /vp8/encoder/rdopt.c
parent583f2d8fc7edeaf9d8eec5b928a485334a5b8544 (diff)
downloadlibvpx-3cc5b92c6516aac4c3f9bf27974bd8543b286251.tar
libvpx-3cc5b92c6516aac4c3f9bf27974bd8543b286251.tar.gz
libvpx-3cc5b92c6516aac4c3f9bf27974bd8543b286251.tar.bz2
libvpx-3cc5b92c6516aac4c3f9bf27974bd8543b286251.zip
Further code simplification and clean up.
Change-Id: Ifdb17b56090a317b2aa82cf125d57934902c5298
Diffstat (limited to 'vp8/encoder/rdopt.c')
-rw-r--r--vp8/encoder/rdopt.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c
index 1491e645b..c8b79615b 100644
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -2390,13 +2390,6 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int
int dualmode_cost = 0;
int mode_excluded = 0;
- // Experimental debug code.
- // Record of rd values recorded for this MB. -1 indicates not measured
- //all_rds[mode_index] = -1;
- //all_rates[mode_index] = -1;
- //all_dist[mode_index] = -1;
- //intermodecost[mode_index] = -1;
-
// Test best rd so far against threshold for trying this mode.
if (best_rd <= cpi->rd_threshes[mode_index])
continue;