jlmiller@webrtc.org | 5f93d0a | 2015-01-20 21:36:13 | [diff] [blame] | 1 | /* |
kjellander | 1afca73 | 2016-02-08 04:46:45 | [diff] [blame] | 2 | * Copyright (c) 2010 The WebRTC project authors. All Rights Reserved. |
jlmiller@webrtc.org | 5f93d0a | 2015-01-20 21:36:13 | [diff] [blame] | 3 | * |
kjellander | 1afca73 | 2016-02-08 04:46:45 | [diff] [blame] | 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
jlmiller@webrtc.org | 5f93d0a | 2015-01-20 21:36:13 | [diff] [blame] | 9 | */ |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 10 | |
kjellander | a96e2d7 | 2016-02-05 07:52:28 | [diff] [blame] | 11 | #include "webrtc/media/base/videoadapter.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 12 | |
andresp@webrtc.org | ff689be | 2015-02-12 11:54:26 | [diff] [blame] | 13 | #include <algorithm> |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 14 | #include <limits> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 15 | |
buildbot@webrtc.org | a09a999 | 2014-08-13 17:26:08 | [diff] [blame] | 16 | #include "webrtc/base/logging.h" |
kjellander | f475277 | 2016-03-02 13:42:30 | [diff] [blame] | 17 | #include "webrtc/media/base/mediaconstants.h" |
kjellander | a96e2d7 | 2016-02-05 07:52:28 | [diff] [blame] | 18 | #include "webrtc/media/base/videocommon.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 19 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 20 | namespace { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 21 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 22 | // Scale factors optimized for in libYUV that we accept. |
| 23 | // Must be sorted in decreasing scale factors for FindScaleLargerThan to work. |
| 24 | const float kScaleFactors[] = { |
| 25 | 1.f / 1.f, // Full size. |
| 26 | 3.f / 4.f, // 3/4 scale. |
| 27 | 1.f / 2.f, // 1/2 scale. |
| 28 | 3.f / 8.f, // 3/8 scale. |
| 29 | 1.f / 4.f, // 1/4 scale. |
| 30 | 3.f / 16.f, // 3/16 scale. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 31 | }; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 32 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 33 | float FindScaleLessThanOrEqual(int width, |
| 34 | int height, |
| 35 | int target_num_pixels, |
| 36 | int* resulting_number_of_pixels) { |
| 37 | float best_distance = std::numeric_limits<float>::max(); |
| 38 | float best_scale = 0.0f; // Default to 0 if nothing matches. |
| 39 | float pixels = width * height; |
| 40 | float best_number_of_pixels = 0.0f; |
| 41 | for (const auto& scale : kScaleFactors) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 42 | float test_num_pixels = pixels * scale * scale; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 43 | float diff = target_num_pixels - test_num_pixels; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 44 | if (diff < 0) { |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 45 | continue; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 46 | } |
| 47 | if (diff < best_distance) { |
| 48 | best_distance = diff; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 49 | best_scale = scale; |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 50 | best_number_of_pixels = test_num_pixels; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 51 | if (best_distance == 0) { // Found exact match. |
| 52 | break; |
| 53 | } |
| 54 | } |
| 55 | } |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 56 | if (resulting_number_of_pixels) { |
| 57 | *resulting_number_of_pixels = static_cast<int>(best_number_of_pixels + .5f); |
| 58 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 59 | return best_scale; |
| 60 | } |
| 61 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 62 | float FindScaleLargerThan(int width, |
| 63 | int height, |
| 64 | int target_num_pixels, |
| 65 | int* resulting_number_of_pixels) { |
| 66 | float best_distance = std::numeric_limits<float>::max(); |
| 67 | float best_scale = 1.f; // Default to unscaled if nothing matches. |
| 68 | float pixels = width * height; |
| 69 | float best_number_of_pixels = pixels; // Default to input number of pixels. |
| 70 | for (const auto& scale : kScaleFactors) { |
| 71 | float test_num_pixels = pixels * scale * scale; |
| 72 | float diff = test_num_pixels - target_num_pixels; |
| 73 | if (diff <= 0) { |
| 74 | break; |
| 75 | } |
| 76 | if (diff < best_distance) { |
| 77 | best_distance = diff; |
| 78 | best_scale = scale; |
| 79 | best_number_of_pixels = test_num_pixels; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | *resulting_number_of_pixels = static_cast<int>(best_number_of_pixels + .5f); |
| 84 | return best_scale; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 85 | } |
| 86 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 87 | } // namespace |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 88 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 89 | namespace cricket { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 90 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 91 | VideoAdapter::VideoAdapter() |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 92 | : output_num_pixels_(std::numeric_limits<int>::max()), |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 93 | frames_in_(0), |
| 94 | frames_out_(0), |
| 95 | frames_scaled_(0), |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 96 | adaption_changes_(0), |
magjed@webrtc.org | a73d746 | 2014-11-14 13:25:25 | [diff] [blame] | 97 | previous_width_(0), |
| 98 | previous_height_(0), |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 99 | interval_next_frame_(0), |
| 100 | format_request_max_pixel_count_(std::numeric_limits<int>::max()), |
| 101 | resolution_request_max_pixel_count_(std::numeric_limits<int>::max()) {} |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 102 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 103 | VideoAdapter::~VideoAdapter() {} |
| 104 | |
| 105 | void VideoAdapter::SetExpectedInputFrameInterval(int64_t interval) { |
| 106 | // TODO(perkj): Consider measuring input frame rate instead. |
| 107 | // Frame rate typically varies depending on lighting. |
| 108 | rtc::CritScope cs(&critical_section_); |
| 109 | input_format_.interval = interval; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 110 | } |
| 111 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 112 | void VideoAdapter::SetInputFormat(const VideoFormat& format) { |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 113 | bool is_resolution_change = (input_format().width != format.width || |
| 114 | input_format().height != format.height); |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 115 | int64_t old_input_interval = input_format_.interval; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 116 | input_format_ = format; |
andresp@webrtc.org | ff689be | 2015-02-12 11:54:26 | [diff] [blame] | 117 | output_format_.interval = |
| 118 | std::max(output_format_.interval, input_format_.interval); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 119 | if (old_input_interval != input_format_.interval) { |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 | [diff] [blame] | 120 | LOG(LS_INFO) << "VAdapt input interval changed from " |
| 121 | << old_input_interval << " to " << input_format_.interval; |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 122 | } |
mallinath@webrtc.org | 1b15f42 | 2013-09-06 22:56:28 | [diff] [blame] | 123 | if (is_resolution_change) { |
mallinath@webrtc.org | 1b15f42 | 2013-09-06 22:56:28 | [diff] [blame] | 124 | // Trigger the adaptation logic again, to potentially reset the adaptation |
| 125 | // state for things like view requests that may not longer be capping |
| 126 | // output (or may now cap output). |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 127 | Adapt(std::min(format_request_max_pixel_count_, |
| 128 | resolution_request_max_pixel_count_), |
| 129 | 0); |
mallinath@webrtc.org | 1b15f42 | 2013-09-06 22:56:28 | [diff] [blame] | 130 | } |
| 131 | } |
| 132 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 133 | const VideoFormat& VideoAdapter::input_format() const { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 | [diff] [blame] | 134 | rtc::CritScope cs(&critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 135 | return input_format_; |
| 136 | } |
| 137 | |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 138 | VideoFormat VideoAdapter::AdaptFrameResolution(int in_width, int in_height) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 | [diff] [blame] | 139 | rtc::CritScope cs(&critical_section_); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 140 | ++frames_in_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 141 | |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 142 | SetInputFormat(VideoFormat( |
| 143 | in_width, in_height, input_format_.interval, input_format_.fourcc)); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 144 | |
| 145 | // Drop the input frame if necessary. |
| 146 | bool should_drop = false; |
| 147 | if (!output_num_pixels_) { |
| 148 | // Drop all frames as the output format is 0x0. |
| 149 | should_drop = true; |
| 150 | } else { |
| 151 | // Drop some frames based on input fps and output fps. |
| 152 | // Normally output fps is less than input fps. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 153 | interval_next_frame_ += input_format_.interval; |
| 154 | if (output_format_.interval > 0) { |
| 155 | if (interval_next_frame_ >= output_format_.interval) { |
| 156 | interval_next_frame_ %= output_format_.interval; |
| 157 | } else { |
| 158 | should_drop = true; |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | if (should_drop) { |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 163 | // Show VAdapt log every 90 frames dropped. (3 seconds) |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 | [diff] [blame] | 164 | if ((frames_in_ - frames_out_) % 90 == 0) { |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 165 | // TODO(fbarchard): Reduce to LS_VERBOSE when adapter info is not needed |
| 166 | // in default calls. |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 | [diff] [blame] | 167 | LOG(LS_INFO) << "VAdapt Drop Frame: scaled " << frames_scaled_ |
| 168 | << " / out " << frames_out_ |
| 169 | << " / in " << frames_in_ |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 170 | << " Changes: " << adaption_changes_ |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 171 | << " Input: " << in_width |
| 172 | << "x" << in_height |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 173 | << " i" << input_format_.interval |
| 174 | << " Output: i" << output_format_.interval; |
| 175 | } |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 176 | |
| 177 | return VideoFormat(); // Drop frame. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 178 | } |
| 179 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 180 | const float scale = FindScaleLessThanOrEqual(in_width, in_height, |
| 181 | output_num_pixels_, nullptr); |
| 182 | const int output_width = static_cast<int>(in_width * scale + .5f); |
| 183 | const int output_height = static_cast<int>(in_height * scale + .5f); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 184 | |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 185 | ++frames_out_; |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 186 | if (scale != 1) |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 187 | ++frames_scaled_; |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 | [diff] [blame] | 188 | |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 189 | if (previous_width_ && (previous_width_ != output_width || |
| 190 | previous_height_ != output_height)) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 191 | ++adaption_changes_; |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 192 | LOG(LS_INFO) << "Frame size changed: scaled " << frames_scaled_ << " / out " |
| 193 | << frames_out_ << " / in " << frames_in_ |
| 194 | << " Changes: " << adaption_changes_ << " Input: " << in_width |
| 195 | << "x" << in_height << " i" << input_format_.interval |
| 196 | << " Scale: " << scale << " Output: " << output_width << "x" |
| 197 | << output_height << " i" << output_format_.interval; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 198 | } |
magjed@webrtc.org | f58b455 | 2014-11-19 18:09:14 | [diff] [blame] | 199 | |
| 200 | output_format_.width = output_width; |
| 201 | output_format_.height = output_height; |
| 202 | previous_width_ = output_width; |
| 203 | previous_height_ = output_height; |
| 204 | |
| 205 | return output_format_; |
| 206 | } |
| 207 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 208 | void VideoAdapter::OnOutputFormatRequest(const VideoFormat& format) { |
| 209 | rtc::CritScope cs(&critical_section_); |
| 210 | format_request_max_pixel_count_ = format.width * format.height; |
| 211 | output_format_.interval = format.interval; |
| 212 | Adapt(std::min(format_request_max_pixel_count_, |
| 213 | resolution_request_max_pixel_count_), |
| 214 | 0); |
henrike@webrtc.org | d43aa9d | 2014-02-21 23:43:24 | [diff] [blame] | 215 | } |
| 216 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 217 | void VideoAdapter::OnResolutionRequest( |
perkj | 2d5f091 | 2016-02-29 08:04:41 | [diff] [blame] | 218 | rtc::Optional<int> max_pixel_count, |
| 219 | rtc::Optional<int> max_pixel_count_step_up) { |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 220 | rtc::CritScope cs(&critical_section_); |
| 221 | resolution_request_max_pixel_count_ = |
| 222 | max_pixel_count.value_or(std::numeric_limits<int>::max()); |
| 223 | Adapt(std::min(format_request_max_pixel_count_, |
| 224 | resolution_request_max_pixel_count_), |
| 225 | max_pixel_count_step_up.value_or(0)); |
perkj | 2d5f091 | 2016-02-29 08:04:41 | [diff] [blame] | 226 | } |
| 227 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 228 | bool VideoAdapter::Adapt(int max_num_pixels, int max_pixel_count_step_up) { |
| 229 | float scale_lower = |
| 230 | FindScaleLessThanOrEqual(input_format_.width, input_format_.height, |
| 231 | max_num_pixels, &max_num_pixels); |
| 232 | float scale_upper = |
| 233 | max_pixel_count_step_up > 0 |
| 234 | ? FindScaleLargerThan(input_format_.width, input_format_.height, |
| 235 | max_pixel_count_step_up, |
| 236 | &max_pixel_count_step_up) |
| 237 | : 1.f; |
perkj | 2d5f091 | 2016-02-29 08:04:41 | [diff] [blame] | 238 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 239 | bool use_max_pixel_count_step_up = |
| 240 | max_pixel_count_step_up > 0 && max_num_pixels > max_pixel_count_step_up; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 241 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 242 | int old_num_pixels = output_num_pixels_; |
| 243 | output_num_pixels_ = |
| 244 | use_max_pixel_count_step_up ? max_pixel_count_step_up : max_num_pixels; |
| 245 | // Log the new size. |
| 246 | float scale = use_max_pixel_count_step_up ? scale_upper : scale_lower; |
| 247 | int new_width = static_cast<int>(input_format_.width * scale + .5f); |
| 248 | int new_height = static_cast<int>(input_format_.height * scale + .5f); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 | [diff] [blame] | 249 | |
Per | 766ad3b9 | 2016-04-05 13:23:49 | [diff] [blame^] | 250 | bool changed = output_num_pixels_ != old_num_pixels; |
| 251 | LOG(LS_INFO) << "OnResolutionRequest: " |
| 252 | << " Max pixels: " << max_num_pixels |
| 253 | << " Max pixels step up: " << max_pixel_count_step_up |
| 254 | << " Output Pixels: " << output_num_pixels_ |
| 255 | << " Input: " << input_format_.width << "x" |
| 256 | << input_format_.height << " Scale: " << scale |
| 257 | << " Resolution: " << new_width << "x" << new_height |
| 258 | << " Changed: " << (changed ? "true" : "false"); |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 | [diff] [blame] | 259 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 260 | return changed; |
| 261 | } |
| 262 | |
| 263 | } // namespace cricket |