henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | // libjingle |
| 2 | // Copyright 2010 Google Inc. |
| 3 | // |
| 4 | // Redistribution and use in source and binary forms, with or without |
| 5 | // modification, are permitted provided that the following conditions are met: |
| 6 | // |
| 7 | // 1. Redistributions of source code must retain the above copyright notice, |
| 8 | // this list of conditions and the following disclaimer. |
| 9 | // 2. Redistributions in binary form must reproduce the above copyright notice, |
| 10 | // this list of conditions and the following disclaimer in the documentation |
| 11 | // and/or other materials provided with the distribution. |
| 12 | // 3. The name of the author may not be used to endorse or promote products |
| 13 | // derived from this software without specific prior written permission. |
| 14 | // |
| 15 | // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 16 | // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 17 | // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 18 | // EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 19 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 20 | // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 21 | // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 22 | // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 23 | // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 24 | // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 | |
| 26 | #include "talk/media/base/videoadapter.h" |
| 27 | |
| 28 | #include <limits.h> // For INT_MAX |
| 29 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 30 | #include "webrtc/base/logging.h" |
| 31 | #include "webrtc/base/timeutils.h" |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 32 | #include "talk/media/base/constants.h" |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 33 | #include "talk/media/base/videocommon.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 34 | #include "talk/media/base/videoframe.h" |
| 35 | |
| 36 | namespace cricket { |
| 37 | |
| 38 | // TODO(fbarchard): Make downgrades settable |
| 39 | static const int kMaxCpuDowngrades = 2; // Downgrade at most 2 times for CPU. |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 40 | // The number of cpu samples to require before adapting. This value depends on |
| 41 | // the cpu monitor sampling frequency being 2000ms. |
| 42 | static const int kCpuLoadMinSamples = 3; |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 43 | // The amount of weight to give to each new cpu load sample. The lower the |
| 44 | // value, the slower we'll adapt to changing cpu conditions. |
| 45 | static const float kCpuLoadWeightCoefficient = 0.4f; |
| 46 | // The seed value for the cpu load moving average. |
| 47 | static const float kCpuLoadInitialAverage = 0.5f; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 48 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 49 | // Desktop needs 1/8 scale for HD (1280 x 720) to QQVGA (160 x 90) |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 50 | static const float kScaleFactors[] = { |
| 51 | 1.f / 1.f, // Full size. |
| 52 | 3.f / 4.f, // 3/4 scale. |
| 53 | 1.f / 2.f, // 1/2 scale. |
| 54 | 3.f / 8.f, // 3/8 scale. |
| 55 | 1.f / 4.f, // 1/4 scale. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 56 | 3.f / 16.f, // 3/16 scale. |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 57 | 1.f / 8.f, // 1/8 scale. |
| 58 | 0.f // End of table. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 59 | }; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 60 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 61 | // TODO(fbarchard): Use this table (optionally) for CPU and GD as well. |
| 62 | static const float kViewScaleFactors[] = { |
| 63 | 1.f / 1.f, // Full size. |
| 64 | 3.f / 4.f, // 3/4 scale. |
| 65 | 2.f / 3.f, // 2/3 scale. // Allow 1080p to 720p. |
| 66 | 1.f / 2.f, // 1/2 scale. |
| 67 | 3.f / 8.f, // 3/8 scale. |
| 68 | 1.f / 3.f, // 1/3 scale. // Allow 1080p to 360p. |
| 69 | 1.f / 4.f, // 1/4 scale. |
| 70 | 3.f / 16.f, // 3/16 scale. |
| 71 | 1.f / 8.f, // 1/8 scale. |
| 72 | 0.f // End of table. |
| 73 | }; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 74 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 75 | const float* VideoAdapter::GetViewScaleFactors() const { |
| 76 | return scale_third_ ? kViewScaleFactors : kScaleFactors; |
| 77 | } |
| 78 | |
| 79 | // For resolutions that would scale down a little instead of up a little, |
| 80 | // bias toward scaling up a little. This will tend to choose 3/4 scale instead |
| 81 | // of 2/3 scale, when the 2/3 is not an exact match. |
| 82 | static const float kUpBias = -0.9f; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 83 | // Find the scale factor that, when applied to width and height, is closest |
| 84 | // to num_pixels. |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 85 | float VideoAdapter::FindScale(const float* scale_factors, |
| 86 | const float upbias, |
| 87 | int width, int height, |
| 88 | int target_num_pixels) { |
| 89 | const float kMinNumPixels = 160 * 90; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 90 | if (!target_num_pixels) { |
| 91 | return 0.f; |
| 92 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 93 | float best_distance = static_cast<float>(INT_MAX); |
| 94 | float best_scale = 1.f; // Default to unscaled if nothing matches. |
| 95 | float pixels = static_cast<float>(width * height); |
| 96 | for (int i = 0; ; ++i) { |
| 97 | float scale = scale_factors[i]; |
| 98 | float test_num_pixels = pixels * scale * scale; |
| 99 | // Do not consider scale factors that produce too small images. |
| 100 | // Scale factor of 0 at end of table will also exit here. |
| 101 | if (test_num_pixels < kMinNumPixels) { |
| 102 | break; |
| 103 | } |
| 104 | float diff = target_num_pixels - test_num_pixels; |
| 105 | // If resolution is higher than desired, bias the difference based on |
| 106 | // preference for slightly larger for nearest, or avoid completely if |
| 107 | // looking for lower resolutions only. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 108 | if (diff < 0) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 109 | diff = diff * kUpBias; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 110 | } |
| 111 | if (diff < best_distance) { |
| 112 | best_distance = diff; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 113 | best_scale = scale; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 114 | if (best_distance == 0) { // Found exact match. |
| 115 | break; |
| 116 | } |
| 117 | } |
| 118 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 119 | return best_scale; |
| 120 | } |
| 121 | |
| 122 | // Find the closest scale factor. |
| 123 | float VideoAdapter::FindClosestScale(int width, int height, |
| 124 | int target_num_pixels) { |
| 125 | return FindScale(kScaleFactors, kUpBias, |
| 126 | width, height, target_num_pixels); |
| 127 | } |
| 128 | |
| 129 | // Find the closest view scale factor. |
| 130 | float VideoAdapter::FindClosestViewScale(int width, int height, |
| 131 | int target_num_pixels) { |
| 132 | return FindScale(GetViewScaleFactors(), kUpBias, |
| 133 | width, height, target_num_pixels); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | // Finds the scale factor that, when applied to width and height, produces |
| 137 | // fewer than num_pixels. |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 138 | static const float kUpAvoidBias = -1000000000.f; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 139 | float VideoAdapter::FindLowerScale(int width, int height, |
| 140 | int target_num_pixels) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 141 | return FindScale(GetViewScaleFactors(), kUpAvoidBias, |
| 142 | width, height, target_num_pixels); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | // There are several frame sizes used by Adapter. This explains them |
| 146 | // input_format - set once by server to frame size expected from the camera. |
| 147 | // output_format - size that output would like to be. Includes framerate. |
| 148 | // output_num_pixels - size that output should be constrained to. Used to |
| 149 | // compute output_format from in_frame. |
| 150 | // in_frame - actual camera captured frame size, which is typically the same |
| 151 | // as input_format. This can also be rotated or cropped for aspect ratio. |
| 152 | // out_frame - actual frame output by adapter. Should be a direct scale of |
| 153 | // in_frame maintaining rotation and aspect ratio. |
| 154 | // OnOutputFormatRequest - server requests you send this resolution based on |
| 155 | // view requests. |
| 156 | // OnEncoderResolutionRequest - encoder requests you send this resolution based |
| 157 | // on bandwidth |
| 158 | // OnCpuLoadUpdated - cpu monitor requests you send this resolution based on |
| 159 | // cpu load. |
| 160 | |
| 161 | /////////////////////////////////////////////////////////////////////// |
| 162 | // Implementation of VideoAdapter |
| 163 | VideoAdapter::VideoAdapter() |
| 164 | : output_num_pixels_(INT_MAX), |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 165 | scale_third_(false), |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 166 | frames_in_(0), |
| 167 | frames_out_(0), |
| 168 | frames_scaled_(0), |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 169 | adaption_changes_(0), |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 170 | previous_width_(0), |
| 171 | previous_height_(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 172 | black_output_(false), |
| 173 | is_black_(false), |
| 174 | interval_next_frame_(0) { |
| 175 | } |
| 176 | |
| 177 | VideoAdapter::~VideoAdapter() { |
| 178 | } |
| 179 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 180 | void VideoAdapter::SetInputFormat(const VideoFormat& format) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 181 | rtc::CritScope cs(&critical_section_); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 182 | int64 old_input_interval = input_format_.interval; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 183 | input_format_ = format; |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 184 | output_format_.interval = rtc::_max( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 185 | output_format_.interval, input_format_.interval); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 186 | if (old_input_interval != input_format_.interval) { |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 187 | LOG(LS_INFO) << "VAdapt input interval changed from " |
| 188 | << old_input_interval << " to " << input_format_.interval; |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 189 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 190 | } |
| 191 | |
mallinath@webrtc.org | 1b15f42 | 2013-09-06 22:56:28 +0000 | [diff] [blame] | 192 | void CoordinatedVideoAdapter::SetInputFormat(const VideoFormat& format) { |
| 193 | int previous_width = input_format().width; |
| 194 | int previous_height = input_format().height; |
| 195 | bool is_resolution_change = previous_width > 0 && format.width > 0 && |
| 196 | (previous_width != format.width || |
| 197 | previous_height != format.height); |
| 198 | VideoAdapter::SetInputFormat(format); |
| 199 | if (is_resolution_change) { |
| 200 | int width, height; |
| 201 | // Trigger the adaptation logic again, to potentially reset the adaptation |
| 202 | // state for things like view requests that may not longer be capping |
| 203 | // output (or may now cap output). |
| 204 | AdaptToMinimumFormat(&width, &height); |
| 205 | LOG(LS_INFO) << "VAdapt Input Resolution Change: " |
| 206 | << "Previous input resolution: " |
| 207 | << previous_width << "x" << previous_height |
| 208 | << " New input resolution: " |
| 209 | << format.width << "x" << format.height |
| 210 | << " New output resolution: " |
| 211 | << width << "x" << height; |
| 212 | } |
| 213 | } |
| 214 | |
henrike@webrtc.org | d43aa9d | 2014-02-21 23:43:24 +0000 | [diff] [blame] | 215 | void CoordinatedVideoAdapter::set_cpu_smoothing(bool enable) { |
| 216 | LOG(LS_INFO) << "CPU smoothing is now " |
| 217 | << (enable ? "enabled" : "disabled"); |
| 218 | cpu_smoothing_ = enable; |
| 219 | } |
| 220 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 221 | void VideoAdapter::SetOutputFormat(const VideoFormat& format) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 222 | rtc::CritScope cs(&critical_section_); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 223 | int64 old_output_interval = output_format_.interval; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 224 | output_format_ = format; |
| 225 | output_num_pixels_ = output_format_.width * output_format_.height; |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 226 | output_format_.interval = rtc::_max( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 227 | output_format_.interval, input_format_.interval); |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 228 | if (old_output_interval != output_format_.interval) { |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 229 | LOG(LS_INFO) << "VAdapt output interval changed from " |
| 230 | << old_output_interval << " to " << output_format_.interval; |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 231 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | const VideoFormat& VideoAdapter::input_format() { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 235 | rtc::CritScope cs(&critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 236 | return input_format_; |
| 237 | } |
| 238 | |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 239 | bool VideoAdapter::drops_all_frames() const { |
| 240 | return output_num_pixels_ == 0; |
| 241 | } |
| 242 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 243 | const VideoFormat& VideoAdapter::output_format() { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 244 | rtc::CritScope cs(&critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 245 | return output_format_; |
| 246 | } |
| 247 | |
| 248 | void VideoAdapter::SetBlackOutput(bool black) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 249 | rtc::CritScope cs(&critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 250 | black_output_ = black; |
| 251 | } |
| 252 | |
| 253 | // Constrain output resolution to this many pixels overall |
| 254 | void VideoAdapter::SetOutputNumPixels(int num_pixels) { |
| 255 | output_num_pixels_ = num_pixels; |
| 256 | } |
| 257 | |
| 258 | int VideoAdapter::GetOutputNumPixels() const { |
| 259 | return output_num_pixels_; |
| 260 | } |
| 261 | |
| 262 | // TODO(fbarchard): Add AdaptFrameRate function that only drops frames but |
| 263 | // not resolution. |
buildbot@webrtc.org | 0cdcd23 | 2014-06-04 01:31:14 +0000 | [diff] [blame] | 264 | bool VideoAdapter::AdaptFrame(VideoFrame* in_frame, |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 265 | VideoFrame** out_frame) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 266 | rtc::CritScope cs(&critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 267 | if (!in_frame || !out_frame) { |
| 268 | return false; |
| 269 | } |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 270 | ++frames_in_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 271 | |
| 272 | // Update input to actual frame dimensions. |
mallinath@webrtc.org | ab5a091 | 2013-09-07 00:12:57 +0000 | [diff] [blame] | 273 | VideoFormat format(static_cast<int>(in_frame->GetWidth()), |
| 274 | static_cast<int>(in_frame->GetHeight()), |
mallinath@webrtc.org | 1b15f42 | 2013-09-06 22:56:28 +0000 | [diff] [blame] | 275 | input_format_.interval, input_format_.fourcc); |
| 276 | SetInputFormat(format); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 277 | |
| 278 | // Drop the input frame if necessary. |
| 279 | bool should_drop = false; |
| 280 | if (!output_num_pixels_) { |
| 281 | // Drop all frames as the output format is 0x0. |
| 282 | should_drop = true; |
| 283 | } else { |
| 284 | // Drop some frames based on input fps and output fps. |
| 285 | // Normally output fps is less than input fps. |
| 286 | // TODO(fbarchard): Consider adjusting interval to reflect the adjusted |
| 287 | // interval between frames after dropping some frames. |
| 288 | interval_next_frame_ += input_format_.interval; |
| 289 | if (output_format_.interval > 0) { |
| 290 | if (interval_next_frame_ >= output_format_.interval) { |
| 291 | interval_next_frame_ %= output_format_.interval; |
| 292 | } else { |
| 293 | should_drop = true; |
| 294 | } |
| 295 | } |
| 296 | } |
| 297 | if (should_drop) { |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 298 | // Show VAdapt log every 90 frames dropped. (3 seconds) |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 299 | if ((frames_in_ - frames_out_) % 90 == 0) { |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 300 | // TODO(fbarchard): Reduce to LS_VERBOSE when adapter info is not needed |
| 301 | // in default calls. |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 302 | LOG(LS_INFO) << "VAdapt Drop Frame: scaled " << frames_scaled_ |
| 303 | << " / out " << frames_out_ |
| 304 | << " / in " << frames_in_ |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 305 | << " Changes: " << adaption_changes_ |
| 306 | << " Input: " << in_frame->GetWidth() |
| 307 | << "x" << in_frame->GetHeight() |
| 308 | << " i" << input_format_.interval |
| 309 | << " Output: i" << output_format_.interval; |
| 310 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 311 | *out_frame = NULL; |
| 312 | return true; |
| 313 | } |
| 314 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 315 | float scale = 1.f; |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 316 | if (output_num_pixels_ < input_format_.width * input_format_.height) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 317 | scale = VideoAdapter::FindClosestViewScale( |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 318 | static_cast<int>(in_frame->GetWidth()), |
| 319 | static_cast<int>(in_frame->GetHeight()), |
| 320 | output_num_pixels_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 321 | output_format_.width = static_cast<int>(in_frame->GetWidth() * scale + .5f); |
| 322 | output_format_.height = static_cast<int>(in_frame->GetHeight() * scale + |
| 323 | .5f); |
henrike@webrtc.org | 704bf9e | 2014-02-27 17:52:04 +0000 | [diff] [blame] | 324 | } else { |
| 325 | output_format_.width = static_cast<int>(in_frame->GetWidth()); |
| 326 | output_format_.height = static_cast<int>(in_frame->GetHeight()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 327 | } |
| 328 | |
buildbot@webrtc.org | 0cdcd23 | 2014-06-04 01:31:14 +0000 | [diff] [blame] | 329 | if (!black_output_ && |
| 330 | in_frame->GetWidth() == static_cast<size_t>(output_format_.width) && |
| 331 | in_frame->GetHeight() == static_cast<size_t>(output_format_.height)) { |
| 332 | // The dimensions are correct and we aren't muting, so use the input frame. |
| 333 | *out_frame = in_frame; |
| 334 | } else { |
| 335 | if (!StretchToOutputFrame(in_frame)) { |
| 336 | LOG(LS_VERBOSE) << "VAdapt Stretch Failed."; |
| 337 | return false; |
| 338 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 339 | |
buildbot@webrtc.org | 0cdcd23 | 2014-06-04 01:31:14 +0000 | [diff] [blame] | 340 | *out_frame = output_frame_.get(); |
| 341 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 342 | |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 343 | ++frames_out_; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 344 | if (in_frame->GetWidth() != (*out_frame)->GetWidth() || |
| 345 | in_frame->GetHeight() != (*out_frame)->GetHeight()) { |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 346 | ++frames_scaled_; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 347 | } |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 348 | // Show VAdapt log every 90 frames output. (3 seconds) |
| 349 | // TODO(fbarchard): Consider GetLogSeverity() to change interval to less |
| 350 | // for LS_VERBOSE and more for LS_INFO. |
| 351 | bool show = (frames_out_) % 90 == 0; |
| 352 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 353 | // TODO(fbarchard): LOG the previous output resolution and track input |
| 354 | // resolution changes as well. Consider dropping the statistics into their |
| 355 | // own class which could be queried publically. |
| 356 | bool changed = false; |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 357 | if (previous_width_ && (previous_width_ != (*out_frame)->GetWidth() || |
| 358 | previous_height_ != (*out_frame)->GetHeight())) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 359 | show = true; |
| 360 | ++adaption_changes_; |
| 361 | changed = true; |
| 362 | } |
| 363 | if (show) { |
| 364 | // TODO(fbarchard): Reduce to LS_VERBOSE when adapter info is not needed |
| 365 | // in default calls. |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 366 | LOG(LS_INFO) << "VAdapt Frame: scaled " << frames_scaled_ |
| 367 | << " / out " << frames_out_ |
| 368 | << " / in " << frames_in_ |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 369 | << " Changes: " << adaption_changes_ |
| 370 | << " Input: " << in_frame->GetWidth() |
| 371 | << "x" << in_frame->GetHeight() |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 372 | << " i" << input_format_.interval |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 373 | << " Scale: " << scale |
| 374 | << " Output: " << (*out_frame)->GetWidth() |
| 375 | << "x" << (*out_frame)->GetHeight() |
sergeyu@chromium.org | 9cf037b | 2014-02-07 19:03:26 +0000 | [diff] [blame] | 376 | << " i" << output_format_.interval |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 377 | << " Changed: " << (changed ? "true" : "false"); |
| 378 | } |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 379 | previous_width_ = (*out_frame)->GetWidth(); |
| 380 | previous_height_ = (*out_frame)->GetHeight(); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 381 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 382 | return true; |
| 383 | } |
| 384 | |
henrike@webrtc.org | d43aa9d | 2014-02-21 23:43:24 +0000 | [diff] [blame] | 385 | void VideoAdapter::set_scale_third(bool enable) { |
| 386 | LOG(LS_INFO) << "Video Adapter third scaling is now " |
| 387 | << (enable ? "enabled" : "disabled"); |
| 388 | scale_third_ = enable; |
| 389 | } |
| 390 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 391 | // Scale or Blacken the frame. Returns true if successful. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 392 | bool VideoAdapter::StretchToOutputFrame(const VideoFrame* in_frame) { |
| 393 | int output_width = output_format_.width; |
| 394 | int output_height = output_format_.height; |
| 395 | |
| 396 | // Create and stretch the output frame if it has not been created yet or its |
| 397 | // size is not same as the expected. |
| 398 | bool stretched = false; |
| 399 | if (!output_frame_ || |
| 400 | output_frame_->GetWidth() != static_cast<size_t>(output_width) || |
| 401 | output_frame_->GetHeight() != static_cast<size_t>(output_height)) { |
| 402 | output_frame_.reset( |
| 403 | in_frame->Stretch(output_width, output_height, true, true)); |
| 404 | if (!output_frame_) { |
| 405 | LOG(LS_WARNING) << "Adapter failed to stretch frame to " |
| 406 | << output_width << "x" << output_height; |
| 407 | return false; |
| 408 | } |
| 409 | stretched = true; |
| 410 | is_black_ = false; |
| 411 | } |
| 412 | |
| 413 | if (!black_output_) { |
| 414 | if (!stretched) { |
| 415 | // The output frame does not need to be blacken and has not been stretched |
| 416 | // from the input frame yet, stretch the input frame. This is the most |
| 417 | // common case. |
| 418 | in_frame->StretchToFrame(output_frame_.get(), true, true); |
| 419 | } |
| 420 | is_black_ = false; |
| 421 | } else { |
| 422 | if (!is_black_) { |
| 423 | output_frame_->SetToBlack(); |
| 424 | is_black_ = true; |
| 425 | } |
| 426 | output_frame_->SetElapsedTime(in_frame->GetElapsedTime()); |
| 427 | output_frame_->SetTimeStamp(in_frame->GetTimeStamp()); |
| 428 | } |
| 429 | |
| 430 | return true; |
| 431 | } |
| 432 | |
| 433 | /////////////////////////////////////////////////////////////////////// |
| 434 | // Implementation of CoordinatedVideoAdapter |
| 435 | CoordinatedVideoAdapter::CoordinatedVideoAdapter() |
wu@webrtc.org | 9caf276 | 2013-12-11 18:25:07 +0000 | [diff] [blame] | 436 | : cpu_adaptation_(true), |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 437 | cpu_smoothing_(false), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 438 | gd_adaptation_(true), |
| 439 | view_adaptation_(true), |
| 440 | view_switch_(false), |
| 441 | cpu_downgrade_count_(0), |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 442 | cpu_load_min_samples_(kCpuLoadMinSamples), |
| 443 | cpu_load_num_samples_(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 444 | high_system_threshold_(kHighSystemCpuThreshold), |
| 445 | low_system_threshold_(kLowSystemCpuThreshold), |
| 446 | process_threshold_(kProcessCpuThreshold), |
| 447 | view_desired_num_pixels_(INT_MAX), |
| 448 | view_desired_interval_(0), |
| 449 | encoder_desired_num_pixels_(INT_MAX), |
| 450 | cpu_desired_num_pixels_(INT_MAX), |
henrike@webrtc.org | a7b9818 | 2014-02-21 15:51:43 +0000 | [diff] [blame] | 451 | adapt_reason_(ADAPTREASON_NONE), |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 452 | system_load_average_(kCpuLoadInitialAverage) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | // Helper function to UPGRADE or DOWNGRADE a number of pixels |
| 456 | void CoordinatedVideoAdapter::StepPixelCount( |
| 457 | CoordinatedVideoAdapter::AdaptRequest request, |
| 458 | int* num_pixels) { |
| 459 | switch (request) { |
| 460 | case CoordinatedVideoAdapter::DOWNGRADE: |
| 461 | *num_pixels /= 2; |
| 462 | break; |
| 463 | |
| 464 | case CoordinatedVideoAdapter::UPGRADE: |
| 465 | *num_pixels *= 2; |
| 466 | break; |
| 467 | |
| 468 | default: // No change in pixel count |
| 469 | break; |
| 470 | } |
| 471 | return; |
| 472 | } |
| 473 | |
| 474 | // Find the adaptation request of the cpu based on the load. Return UPGRADE if |
| 475 | // the load is low, DOWNGRADE if the load is high, and KEEP otherwise. |
| 476 | CoordinatedVideoAdapter::AdaptRequest CoordinatedVideoAdapter::FindCpuRequest( |
| 477 | int current_cpus, int max_cpus, |
| 478 | float process_load, float system_load) { |
| 479 | // Downgrade if system is high and plugin is at least more than midrange. |
| 480 | if (system_load >= high_system_threshold_ * max_cpus && |
| 481 | process_load >= process_threshold_ * current_cpus) { |
| 482 | return CoordinatedVideoAdapter::DOWNGRADE; |
| 483 | // Upgrade if system is low. |
| 484 | } else if (system_load < low_system_threshold_ * max_cpus) { |
| 485 | return CoordinatedVideoAdapter::UPGRADE; |
| 486 | } |
| 487 | return CoordinatedVideoAdapter::KEEP; |
| 488 | } |
| 489 | |
| 490 | // A remote view request for a new resolution. |
| 491 | void CoordinatedVideoAdapter::OnOutputFormatRequest(const VideoFormat& format) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 492 | rtc::CritScope cs(&request_critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 493 | if (!view_adaptation_) { |
| 494 | return; |
| 495 | } |
| 496 | // Set output for initial aspect ratio in mediachannel unittests. |
| 497 | int old_num_pixels = GetOutputNumPixels(); |
| 498 | SetOutputFormat(format); |
| 499 | SetOutputNumPixels(old_num_pixels); |
| 500 | view_desired_num_pixels_ = format.width * format.height; |
| 501 | view_desired_interval_ = format.interval; |
| 502 | int new_width, new_height; |
| 503 | bool changed = AdaptToMinimumFormat(&new_width, &new_height); |
| 504 | LOG(LS_INFO) << "VAdapt View Request: " |
| 505 | << format.width << "x" << format.height |
| 506 | << " Pixels: " << view_desired_num_pixels_ |
| 507 | << " Changed: " << (changed ? "true" : "false") |
| 508 | << " To: " << new_width << "x" << new_height; |
| 509 | } |
| 510 | |
henrike@webrtc.org | d43aa9d | 2014-02-21 23:43:24 +0000 | [diff] [blame] | 511 | void CoordinatedVideoAdapter::set_cpu_load_min_samples( |
| 512 | int cpu_load_min_samples) { |
| 513 | if (cpu_load_min_samples_ != cpu_load_min_samples) { |
| 514 | LOG(LS_INFO) << "VAdapt Change Cpu Adapt Min Samples from: " |
| 515 | << cpu_load_min_samples_ << " to " |
| 516 | << cpu_load_min_samples; |
| 517 | cpu_load_min_samples_ = cpu_load_min_samples; |
| 518 | } |
| 519 | } |
| 520 | |
| 521 | void CoordinatedVideoAdapter::set_high_system_threshold( |
| 522 | float high_system_threshold) { |
| 523 | ASSERT(high_system_threshold <= 1.0f); |
| 524 | ASSERT(high_system_threshold >= 0.0f); |
| 525 | if (high_system_threshold_ != high_system_threshold) { |
| 526 | LOG(LS_INFO) << "VAdapt Change High System Threshold from: " |
| 527 | << high_system_threshold_ << " to " << high_system_threshold; |
| 528 | high_system_threshold_ = high_system_threshold; |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | void CoordinatedVideoAdapter::set_low_system_threshold( |
| 533 | float low_system_threshold) { |
| 534 | ASSERT(low_system_threshold <= 1.0f); |
| 535 | ASSERT(low_system_threshold >= 0.0f); |
| 536 | if (low_system_threshold_ != low_system_threshold) { |
| 537 | LOG(LS_INFO) << "VAdapt Change Low System Threshold from: " |
| 538 | << low_system_threshold_ << " to " << low_system_threshold; |
| 539 | low_system_threshold_ = low_system_threshold; |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | void CoordinatedVideoAdapter::set_process_threshold(float process_threshold) { |
| 544 | ASSERT(process_threshold <= 1.0f); |
| 545 | ASSERT(process_threshold >= 0.0f); |
| 546 | if (process_threshold_ != process_threshold) { |
| 547 | LOG(LS_INFO) << "VAdapt Change High Process Threshold from: " |
| 548 | << process_threshold_ << " to " << process_threshold; |
| 549 | process_threshold_ = process_threshold; |
| 550 | } |
| 551 | } |
| 552 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 553 | // A Bandwidth GD request for new resolution |
| 554 | void CoordinatedVideoAdapter::OnEncoderResolutionRequest( |
| 555 | int width, int height, AdaptRequest request) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 556 | rtc::CritScope cs(&request_critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 557 | if (!gd_adaptation_) { |
| 558 | return; |
| 559 | } |
| 560 | int old_encoder_desired_num_pixels = encoder_desired_num_pixels_; |
| 561 | if (KEEP != request) { |
| 562 | int new_encoder_desired_num_pixels = width * height; |
| 563 | int old_num_pixels = GetOutputNumPixels(); |
| 564 | if (new_encoder_desired_num_pixels != old_num_pixels) { |
| 565 | LOG(LS_VERBOSE) << "VAdapt GD resolution stale. Ignored"; |
| 566 | } else { |
| 567 | // Update the encoder desired format based on the request. |
| 568 | encoder_desired_num_pixels_ = new_encoder_desired_num_pixels; |
| 569 | StepPixelCount(request, &encoder_desired_num_pixels_); |
| 570 | } |
| 571 | } |
| 572 | int new_width, new_height; |
| 573 | bool changed = AdaptToMinimumFormat(&new_width, &new_height); |
| 574 | |
| 575 | // Ignore up or keep if no change. |
| 576 | if (DOWNGRADE != request && view_switch_ && !changed) { |
| 577 | encoder_desired_num_pixels_ = old_encoder_desired_num_pixels; |
| 578 | LOG(LS_VERBOSE) << "VAdapt ignoring GD request."; |
| 579 | } |
| 580 | |
| 581 | LOG(LS_INFO) << "VAdapt GD Request: " |
| 582 | << (DOWNGRADE == request ? "down" : |
| 583 | (UPGRADE == request ? "up" : "keep")) |
| 584 | << " From: " << width << "x" << height |
| 585 | << " Pixels: " << encoder_desired_num_pixels_ |
| 586 | << " Changed: " << (changed ? "true" : "false") |
| 587 | << " To: " << new_width << "x" << new_height; |
| 588 | } |
| 589 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 590 | // A Bandwidth GD request for new resolution |
| 591 | void CoordinatedVideoAdapter::OnCpuResolutionRequest(AdaptRequest request) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 592 | rtc::CritScope cs(&request_critical_section_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 593 | if (!cpu_adaptation_) { |
| 594 | return; |
| 595 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 596 | // Update how many times we have downgraded due to the cpu load. |
| 597 | switch (request) { |
| 598 | case DOWNGRADE: |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 599 | // Ignore downgrades if we have downgraded the maximum times. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 600 | if (cpu_downgrade_count_ < kMaxCpuDowngrades) { |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 601 | ++cpu_downgrade_count_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 602 | } else { |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 603 | LOG(LS_VERBOSE) << "VAdapt CPU load high but do not downgrade " |
| 604 | "because maximum downgrades reached"; |
| 605 | SignalCpuAdaptationUnable(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 606 | } |
| 607 | break; |
| 608 | case UPGRADE: |
| 609 | if (cpu_downgrade_count_ > 0) { |
| 610 | bool is_min = IsMinimumFormat(cpu_desired_num_pixels_); |
| 611 | if (is_min) { |
| 612 | --cpu_downgrade_count_; |
| 613 | } else { |
| 614 | LOG(LS_VERBOSE) << "VAdapt CPU load low but do not upgrade " |
| 615 | "because cpu is not limiting resolution"; |
| 616 | } |
| 617 | } else { |
| 618 | LOG(LS_VERBOSE) << "VAdapt CPU load low but do not upgrade " |
| 619 | "because minimum downgrades reached"; |
| 620 | } |
| 621 | break; |
| 622 | case KEEP: |
| 623 | default: |
| 624 | break; |
| 625 | } |
| 626 | if (KEEP != request) { |
| 627 | // TODO(fbarchard): compute stepping up/down from OutputNumPixels but |
| 628 | // clamp to inputpixels / 4 (2 steps) |
| 629 | cpu_desired_num_pixels_ = cpu_downgrade_count_ == 0 ? INT_MAX : |
| 630 | static_cast<int>(input_format().width * input_format().height >> |
| 631 | cpu_downgrade_count_); |
| 632 | } |
| 633 | int new_width, new_height; |
| 634 | bool changed = AdaptToMinimumFormat(&new_width, &new_height); |
| 635 | LOG(LS_INFO) << "VAdapt CPU Request: " |
| 636 | << (DOWNGRADE == request ? "down" : |
| 637 | (UPGRADE == request ? "up" : "keep")) |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 638 | << " Steps: " << cpu_downgrade_count_ |
| 639 | << " Changed: " << (changed ? "true" : "false") |
| 640 | << " To: " << new_width << "x" << new_height; |
| 641 | } |
| 642 | |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 643 | // A CPU request for new resolution |
| 644 | // TODO(fbarchard): Move outside adapter. |
| 645 | void CoordinatedVideoAdapter::OnCpuLoadUpdated( |
| 646 | int current_cpus, int max_cpus, float process_load, float system_load) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 647 | rtc::CritScope cs(&request_critical_section_); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 648 | if (!cpu_adaptation_) { |
| 649 | return; |
| 650 | } |
| 651 | // Update the moving average of system load. Even if we aren't smoothing, |
| 652 | // we'll still calculate this information, in case smoothing is later enabled. |
| 653 | system_load_average_ = kCpuLoadWeightCoefficient * system_load + |
| 654 | (1.0f - kCpuLoadWeightCoefficient) * system_load_average_; |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 655 | ++cpu_load_num_samples_; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 656 | if (cpu_smoothing_) { |
| 657 | system_load = system_load_average_; |
| 658 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 659 | AdaptRequest request = FindCpuRequest(current_cpus, max_cpus, |
| 660 | process_load, system_load); |
| 661 | // Make sure we're not adapting too quickly. |
| 662 | if (request != KEEP) { |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 663 | if (cpu_load_num_samples_ < cpu_load_min_samples_) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 664 | LOG(LS_VERBOSE) << "VAdapt CPU load high/low but do not adapt until " |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 665 | << (cpu_load_min_samples_ - cpu_load_num_samples_) |
| 666 | << " more samples"; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 667 | request = KEEP; |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | OnCpuResolutionRequest(request); |
| 672 | } |
| 673 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 674 | // Called by cpu adapter on up requests. |
| 675 | bool CoordinatedVideoAdapter::IsMinimumFormat(int pixels) { |
| 676 | // Find closest scale factor that matches input resolution to min_num_pixels |
| 677 | // and set that for output resolution. This is not needed for VideoAdapter, |
| 678 | // but provides feedback to unittests and users on expected resolution. |
| 679 | // Actual resolution is based on input frame. |
| 680 | VideoFormat new_output = output_format(); |
| 681 | VideoFormat input = input_format(); |
| 682 | if (input_format().IsSize0x0()) { |
| 683 | input = new_output; |
| 684 | } |
| 685 | float scale = 1.0f; |
| 686 | if (!input.IsSize0x0()) { |
| 687 | scale = FindClosestScale(input.width, |
| 688 | input.height, |
| 689 | pixels); |
| 690 | } |
| 691 | new_output.width = static_cast<int>(input.width * scale + .5f); |
| 692 | new_output.height = static_cast<int>(input.height * scale + .5f); |
| 693 | int new_pixels = new_output.width * new_output.height; |
| 694 | int num_pixels = GetOutputNumPixels(); |
| 695 | return new_pixels <= num_pixels; |
| 696 | } |
| 697 | |
| 698 | // Called by all coordinators when there is a change. |
| 699 | bool CoordinatedVideoAdapter::AdaptToMinimumFormat(int* new_width, |
| 700 | int* new_height) { |
| 701 | VideoFormat new_output = output_format(); |
| 702 | VideoFormat input = input_format(); |
| 703 | if (input_format().IsSize0x0()) { |
| 704 | input = new_output; |
| 705 | } |
| 706 | int old_num_pixels = GetOutputNumPixels(); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 707 | int min_num_pixels = INT_MAX; |
henrike@webrtc.org | a7b9818 | 2014-02-21 15:51:43 +0000 | [diff] [blame] | 708 | adapt_reason_ = ADAPTREASON_NONE; |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 709 | |
| 710 | // Reduce resolution based on encoder bandwidth (GD). |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 711 | if (encoder_desired_num_pixels_ && |
| 712 | (encoder_desired_num_pixels_ < min_num_pixels)) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 713 | adapt_reason_ |= ADAPTREASON_BANDWIDTH; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 714 | min_num_pixels = encoder_desired_num_pixels_; |
| 715 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 716 | // Reduce resolution based on CPU. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 717 | if (cpu_adaptation_ && cpu_desired_num_pixels_ && |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 718 | (cpu_desired_num_pixels_ <= min_num_pixels)) { |
| 719 | if (cpu_desired_num_pixels_ < min_num_pixels) { |
| 720 | adapt_reason_ = ADAPTREASON_CPU; |
| 721 | } else { |
| 722 | adapt_reason_ |= ADAPTREASON_CPU; |
| 723 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 724 | min_num_pixels = cpu_desired_num_pixels_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 725 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 726 | // Round resolution for GD or CPU to allow 1/2 to map to 9/16. |
| 727 | if (!input.IsSize0x0() && min_num_pixels != INT_MAX) { |
| 728 | float scale = FindClosestScale(input.width, input.height, min_num_pixels); |
| 729 | min_num_pixels = static_cast<int>(input.width * scale + .5f) * |
| 730 | static_cast<int>(input.height * scale + .5f); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 731 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 732 | // Reduce resolution based on View Request. |
| 733 | if (view_desired_num_pixels_ <= min_num_pixels) { |
| 734 | if (view_desired_num_pixels_ < min_num_pixels) { |
| 735 | adapt_reason_ = ADAPTREASON_VIEW; |
| 736 | } else { |
| 737 | adapt_reason_ |= ADAPTREASON_VIEW; |
| 738 | } |
| 739 | min_num_pixels = view_desired_num_pixels_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 740 | } |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 741 | // Snap to a scale factor. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 742 | float scale = 1.0f; |
| 743 | if (!input.IsSize0x0()) { |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 744 | scale = FindLowerScale(input.width, input.height, min_num_pixels); |
| 745 | min_num_pixels = static_cast<int>(input.width * scale + .5f) * |
| 746 | static_cast<int>(input.height * scale + .5f); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 747 | } |
| 748 | if (scale == 1.0f) { |
henrike@webrtc.org | a7b9818 | 2014-02-21 15:51:43 +0000 | [diff] [blame] | 749 | adapt_reason_ = ADAPTREASON_NONE; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 750 | } |
| 751 | *new_width = new_output.width = static_cast<int>(input.width * scale + .5f); |
| 752 | *new_height = new_output.height = static_cast<int>(input.height * scale + |
| 753 | .5f); |
wu@webrtc.org | cadf904 | 2013-08-30 21:24:16 +0000 | [diff] [blame] | 754 | SetOutputNumPixels(min_num_pixels); |
| 755 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 756 | new_output.interval = view_desired_interval_; |
| 757 | SetOutputFormat(new_output); |
| 758 | int new_num_pixels = GetOutputNumPixels(); |
| 759 | bool changed = new_num_pixels != old_num_pixels; |
| 760 | |
| 761 | static const char* kReasons[8] = { |
| 762 | "None", |
| 763 | "CPU", |
| 764 | "BANDWIDTH", |
| 765 | "CPU+BANDWIDTH", |
| 766 | "VIEW", |
| 767 | "CPU+VIEW", |
| 768 | "BANDWIDTH+VIEW", |
| 769 | "CPU+BANDWIDTH+VIEW", |
| 770 | }; |
| 771 | |
| 772 | LOG(LS_VERBOSE) << "VAdapt Status View: " << view_desired_num_pixels_ |
| 773 | << " GD: " << encoder_desired_num_pixels_ |
| 774 | << " CPU: " << cpu_desired_num_pixels_ |
| 775 | << " Pixels: " << min_num_pixels |
| 776 | << " Input: " << input.width |
| 777 | << "x" << input.height |
| 778 | << " Scale: " << scale |
| 779 | << " Resolution: " << new_output.width |
| 780 | << "x" << new_output.height |
| 781 | << " Changed: " << (changed ? "true" : "false") |
| 782 | << " Reason: " << kReasons[adapt_reason_]; |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 783 | |
| 784 | if (changed) { |
| 785 | // When any adaptation occurs, historic CPU load levels are no longer |
| 786 | // accurate. Clear out our state so we can re-learn at the new normal. |
mallinath@webrtc.org | 67ee6b9 | 2014-02-03 16:57:16 +0000 | [diff] [blame] | 787 | cpu_load_num_samples_ = 0; |
henrike@webrtc.org | 28654cb | 2013-07-22 21:07:49 +0000 | [diff] [blame] | 788 | system_load_average_ = kCpuLoadInitialAverage; |
| 789 | } |
| 790 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 791 | return changed; |
| 792 | } |
| 793 | |
| 794 | } // namespace cricket |