Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: source/libvpx/vp9/encoder/vp9_aq_complexity.c

Issue 592203002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2014 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <limits.h> 11 #include <limits.h>
12 #include <math.h> 12 #include <math.h>
13 13
14 #include "vp9/common/vp9_seg_common.h" 14 #include "vp9/common/vp9_seg_common.h"
15 15
16 #include "vp9/encoder/vp9_segmentation.h" 16 #include "vp9/encoder/vp9_segmentation.h"
17 17
18 #define AQ_C_SEGMENTS 3 18 #define AQ_C_SEGMENTS 3
19 #define AQ_C_STRENGTHS 3 19 #define AQ_C_STRENGTHS 3
20 static const int aq_c_active_segments[AQ_C_STRENGTHS] = {1, 2, 3}; 20 static const int aq_c_active_segments[AQ_C_STRENGTHS] = {1, 2, 3};
21 static const double aq_c_q_adj_factor[AQ_C_STRENGTHS][AQ_C_SEGMENTS] = 21 static const double aq_c_q_adj_factor[AQ_C_STRENGTHS][AQ_C_SEGMENTS] =
22 {{1.0, 1.0, 1.0}, {1.0, 2.0, 1.0}, {1.0, 1.5, 2.5}}; 22 {{1.0, 1.0, 1.0}, {1.0, 2.0, 1.0}, {1.0, 1.5, 2.5}};
23 static const double aq_c_transitions[AQ_C_STRENGTHS][AQ_C_SEGMENTS] = 23 static const double aq_c_transitions[AQ_C_STRENGTHS][AQ_C_SEGMENTS] =
24 {{1.0, 1.0, 1.0}, {1.0, 0.25, 0.0}, {1.0, 0.5, 0.25}}; 24 {{1.0, 1.0, 1.0}, {1.0, 0.25, 0.0}, {1.0, 0.5, 0.25}};
25 25
26 static int get_aq_c_strength(int q_index) { 26 static int get_aq_c_strength(int q_index, vpx_bit_depth_t bit_depth) {
27 // Approximate base quatizer (truncated to int) 27 // Approximate base quatizer (truncated to int)
28 int base_quant = vp9_ac_quant(q_index, 0) / 4; 28 const int base_quant = vp9_ac_quant(q_index, 0, bit_depth) / 4;
29 return (base_quant > 20) + (base_quant > 45); 29 return (base_quant > 20) + (base_quant > 45);
30 } 30 }
31 31
32 void vp9_setup_in_frame_q_adj(VP9_COMP *cpi) { 32 void vp9_setup_in_frame_q_adj(VP9_COMP *cpi) {
33 VP9_COMMON *const cm = &cpi->common; 33 VP9_COMMON *const cm = &cpi->common;
34 struct segmentation *const seg = &cm->seg; 34 struct segmentation *const seg = &cm->seg;
35 35
36 // Make SURE use of floating point in this function is safe. 36 // Make SURE use of floating point in this function is safe.
37 vp9_clear_system_state(); 37 vp9_clear_system_state();
38 38
39 if (cm->frame_type == KEY_FRAME || 39 if (cm->frame_type == KEY_FRAME ||
40 cpi->refresh_alt_ref_frame || 40 cpi->refresh_alt_ref_frame ||
41 (cpi->refresh_golden_frame && !cpi->rc.is_src_frame_alt_ref)) { 41 (cpi->refresh_golden_frame && !cpi->rc.is_src_frame_alt_ref)) {
42 int segment; 42 int segment;
43 const int aq_strength = get_aq_c_strength(cm->base_qindex); 43 const int aq_strength = get_aq_c_strength(cm->base_qindex, cm->bit_depth);
44 const int active_segments = aq_c_active_segments[aq_strength]; 44 const int active_segments = aq_c_active_segments[aq_strength];
45 45
46 // Clear down the segment map. 46 // Clear down the segment map.
47 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols); 47 vpx_memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
48 48
49 // Clear down the complexity map used for rd. 49 // Clear down the complexity map used for rd.
50 vpx_memset(cpi->complexity_map, 0, cm->mi_rows * cm->mi_cols); 50 vpx_memset(cpi->complexity_map, 0, cm->mi_rows * cm->mi_cols);
51 51
52 vp9_clearall_segfeatures(seg); 52 vp9_clearall_segfeatures(seg);
53 53
54 // Segmentation only makes sense if the target bits per SB is above a 54 // Segmentation only makes sense if the target bits per SB is above a
55 // threshold. Below this the overheads will usually outweigh any benefit. 55 // threshold. Below this the overheads will usually outweigh any benefit.
56 if (cpi->rc.sb64_target_rate < 256) { 56 if (cpi->rc.sb64_target_rate < 256) {
57 vp9_disable_segmentation(seg); 57 vp9_disable_segmentation(seg);
58 return; 58 return;
59 } 59 }
60 60
61 vp9_enable_segmentation(seg); 61 vp9_enable_segmentation(seg);
62 62
63 // Select delta coding method. 63 // Select delta coding method.
64 seg->abs_delta = SEGMENT_DELTADATA; 64 seg->abs_delta = SEGMENT_DELTADATA;
65 65
66 // Segment 0 "Q" feature is disabled so it defaults to the baseline Q. 66 // Segment 0 "Q" feature is disabled so it defaults to the baseline Q.
67 vp9_disable_segfeature(seg, 0, SEG_LVL_ALT_Q); 67 vp9_disable_segfeature(seg, 0, SEG_LVL_ALT_Q);
68 68
69 // Use some of the segments for in frame Q adjustment. 69 // Use some of the segments for in frame Q adjustment.
70 for (segment = 1; segment < active_segments; ++segment) { 70 for (segment = 1; segment < active_segments; ++segment) {
71 int qindex_delta = 71 int qindex_delta =
72 vp9_compute_qdelta_by_rate(&cpi->rc, cm->frame_type, cm->base_qindex, 72 vp9_compute_qdelta_by_rate(&cpi->rc, cm->frame_type, cm->base_qindex,
73 aq_c_q_adj_factor[aq_strength][segment]); 73 aq_c_q_adj_factor[aq_strength][segment],
74 cm->bit_depth);
74 75
75 // For AQ complexity mode, we dont allow Q0 in a segment if the base 76 // For AQ complexity mode, we dont allow Q0 in a segment if the base
76 // Q is not 0. Q0 (lossless) implies 4x4 only and in AQ mode 2 a segment 77 // Q is not 0. Q0 (lossless) implies 4x4 only and in AQ mode 2 a segment
77 // Q delta is sometimes applied without going back around the rd loop. 78 // Q delta is sometimes applied without going back around the rd loop.
78 // This could lead to an illegal combination of partition size and q. 79 // This could lead to an illegal combination of partition size and q.
79 if ((cm->base_qindex != 0) && ((cm->base_qindex + qindex_delta) == 0)) { 80 if ((cm->base_qindex != 0) && ((cm->base_qindex + qindex_delta) == 0)) {
80 qindex_delta = -cm->base_qindex + 1; 81 qindex_delta = -cm->base_qindex + 1;
81 } 82 }
82 if ((cm->base_qindex + qindex_delta) > 0) { 83 if ((cm->base_qindex + qindex_delta) > 0) {
83 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q); 84 vp9_enable_segfeature(seg, segment, SEG_LVL_ALT_Q);
(...skipping 24 matching lines...) Expand all
108 109
109 unsigned char segment; 110 unsigned char segment;
110 111
111 if (!output_enabled) { 112 if (!output_enabled) {
112 segment = 0; 113 segment = 0;
113 } else { 114 } else {
114 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh). 115 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh).
115 // It is converted to bits * 256 units. 116 // It is converted to bits * 256 units.
116 const int target_rate = (cpi->rc.sb64_target_rate * xmis * ymis * 256) / 117 const int target_rate = (cpi->rc.sb64_target_rate * xmis * ymis * 256) /
117 (bw * bh); 118 (bw * bh);
118 const int aq_strength = get_aq_c_strength(cm->base_qindex); 119 const int aq_strength = get_aq_c_strength(cm->base_qindex, cm->bit_depth);
119 const int active_segments = aq_c_active_segments[aq_strength]; 120 const int active_segments = aq_c_active_segments[aq_strength];
120 121
121 // The number of segments considered and the transition points used to 122 // The number of segments considered and the transition points used to
122 // select them is determined by the "aq_strength" value. 123 // select them is determined by the "aq_strength" value.
123 // Currently this loop only supports segments that reduce Q (i.e. where 124 // Currently this loop only supports segments that reduce Q (i.e. where
124 // there is undershoot. 125 // there is undershoot.
125 // The loop counts down towards segment 0 which is the default segment 126 // The loop counts down towards segment 0 which is the default segment
126 // with no Q adjustment. 127 // with no Q adjustment.
127 segment = active_segments - 1; 128 segment = active_segments - 1;
128 while (segment > 0) { 129 while (segment > 0) {
(...skipping 12 matching lines...) Expand all
141 142
142 // Fill in the entires in the segment map corresponding to this SB64. 143 // Fill in the entires in the segment map corresponding to this SB64.
143 for (y = 0; y < ymis; y++) { 144 for (y = 0; y < ymis; y++) {
144 for (x = 0; x < xmis; x++) { 145 for (x = 0; x < xmis; x++) {
145 cpi->segmentation_map[mi_offset + y * cm->mi_cols + x] = segment; 146 cpi->segmentation_map[mi_offset + y * cm->mi_cols + x] = segment;
146 cpi->complexity_map[mi_offset + y * cm->mi_cols + x] = 147 cpi->complexity_map[mi_offset + y * cm->mi_cols + x] =
147 (unsigned char)complexity_metric; 148 (unsigned char)complexity_metric;
148 } 149 }
149 } 150 }
150 } 151 }
OLDNEW
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_dthread.c ('k') | source/libvpx/vp9/encoder/vp9_aq_cyclicrefresh.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698