ref: eb0ab207000d7edee563c819addb392e142972cd
parent: 88690475ea28fb396c8efb01ab6d21e106765341
parent: 939f0e7444374fbd4aca2f11b47ae48fde930562
author: Marco Paniconi <marpan@google.com>
date: Wed Apr 2 06:21:52 EDT 2014
Merge "Remove the q division by 3 for first frame."
--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -977,12 +977,9 @@
q = rc_pick_q_and_bounds_two_pass(cpi, bottom_index, top_index);
}
- // JBB : This is realtime mode. In real time mode the first frame
- // should be larger. Q of 0 is disabled because we force tx size to be
+ // Q of 0 is disabled because we force tx size to be
// 16x16...
if (cpi->sf.use_nonrd_pick_mode) {
- if (cpi->common.current_video_frame == 0)
- q /= 3;
if (q == 0)
q++;
if (cpi->sf.partition_check == 1)
--
⑨