OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC 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 |
(...skipping 16 matching lines...) Expand all Loading... |
27 static const int kPacketLossMax = 129; | 27 static const int kPacketLossMax = 129; |
28 | 28 |
29 namespace media_optimization { | 29 namespace media_optimization { |
30 | 30 |
31 VCMProtectionMethod::VCMProtectionMethod() | 31 VCMProtectionMethod::VCMProtectionMethod() |
32 : _effectivePacketLoss(0), | 32 : _effectivePacketLoss(0), |
33 _protectionFactorK(0), | 33 _protectionFactorK(0), |
34 _protectionFactorD(0), | 34 _protectionFactorD(0), |
35 _scaleProtKey(2.0f), | 35 _scaleProtKey(2.0f), |
36 _maxPayloadSize(1460), | 36 _maxPayloadSize(1460), |
| 37 _qmRobustness(new VCMQmRobustness()), |
| 38 _useUepProtectionK(false), |
| 39 _useUepProtectionD(true), |
37 _corrFecCost(1.0), | 40 _corrFecCost(1.0), |
38 _type(kNone) {} | 41 _type(kNone) {} |
39 | 42 |
40 VCMProtectionMethod::~VCMProtectionMethod() {} | 43 VCMProtectionMethod::~VCMProtectionMethod() { |
| 44 delete _qmRobustness; |
| 45 } |
| 46 void VCMProtectionMethod::UpdateContentMetrics( |
| 47 const VideoContentMetrics* contentMetrics) { |
| 48 _qmRobustness->UpdateContent(contentMetrics); |
| 49 } |
41 | 50 |
42 VCMNackFecMethod::VCMNackFecMethod(int64_t lowRttNackThresholdMs, | 51 VCMNackFecMethod::VCMNackFecMethod(int64_t lowRttNackThresholdMs, |
43 int64_t highRttNackThresholdMs) | 52 int64_t highRttNackThresholdMs) |
44 : VCMFecMethod(), | 53 : VCMFecMethod(), |
45 _lowRttNackMs(lowRttNackThresholdMs), | 54 _lowRttNackMs(lowRttNackThresholdMs), |
46 _highRttNackMs(highRttNackThresholdMs), | 55 _highRttNackMs(highRttNackThresholdMs), |
47 _maxFramesFec(1) { | 56 _maxFramesFec(1) { |
48 assert(lowRttNackThresholdMs >= -1 && highRttNackThresholdMs >= -1); | 57 assert(lowRttNackThresholdMs >= -1 && highRttNackThresholdMs >= -1); |
49 assert(highRttNackThresholdMs == -1 || | 58 assert(highRttNackThresholdMs == -1 || |
50 lowRttNackThresholdMs <= highRttNackThresholdMs); | 59 lowRttNackThresholdMs <= highRttNackThresholdMs); |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 if (codeRateDelta < firstPartitionProt) { | 326 if (codeRateDelta < firstPartitionProt) { |
318 codeRateDelta = firstPartitionProt; | 327 codeRateDelta = firstPartitionProt; |
319 } | 328 } |
320 } | 329 } |
321 | 330 |
322 // Check limit on amount of protection for P frame; 50% is max. | 331 // Check limit on amount of protection for P frame; 50% is max. |
323 if (codeRateDelta >= kPacketLossMax) { | 332 if (codeRateDelta >= kPacketLossMax) { |
324 codeRateDelta = kPacketLossMax - 1; | 333 codeRateDelta = kPacketLossMax - 1; |
325 } | 334 } |
326 | 335 |
| 336 float adjustFec = 1.0f; |
| 337 // Avoid additional adjustments when layers are active. |
| 338 // TODO(mikhal/marco): Update adjusmtent based on layer info. |
| 339 if (parameters->numLayers == 1) { |
| 340 adjustFec = _qmRobustness->AdjustFecFactor( |
| 341 codeRateDelta, parameters->bitRate, parameters->frameRate, |
| 342 parameters->rtt, packetLoss); |
| 343 } |
| 344 |
| 345 codeRateDelta = static_cast<uint8_t>(codeRateDelta * adjustFec); |
| 346 |
327 // For Key frame: | 347 // For Key frame: |
328 // Effectively at a higher rate, so we scale/boost the rate | 348 // Effectively at a higher rate, so we scale/boost the rate |
329 // The boost factor may depend on several factors: ratio of packet | 349 // The boost factor may depend on several factors: ratio of packet |
330 // number of I to P frames, how much protection placed on P frames, etc. | 350 // number of I to P frames, how much protection placed on P frames, etc. |
331 const uint8_t packetFrameDelta = (uint8_t)(0.5 + parameters->packetsPerFrame); | 351 const uint8_t packetFrameDelta = (uint8_t)(0.5 + parameters->packetsPerFrame); |
332 const uint8_t packetFrameKey = | 352 const uint8_t packetFrameKey = |
333 (uint8_t)(0.5 + parameters->packetsPerFrameKey); | 353 (uint8_t)(0.5 + parameters->packetsPerFrameKey); |
334 const uint8_t boostKey = BoostCodeRateKey(packetFrameDelta, packetFrameKey); | 354 const uint8_t boostKey = BoostCodeRateKey(packetFrameDelta, packetFrameKey); |
335 | 355 |
336 rateIndexTable = (uint8_t)VCM_MAX( | 356 rateIndexTable = (uint8_t)VCM_MAX( |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 // We reduce cost factor (which will reduce overhead for FEC and | 404 // We reduce cost factor (which will reduce overhead for FEC and |
385 // hybrid method) and not the protectionFactor. | 405 // hybrid method) and not the protectionFactor. |
386 _corrFecCost = 1.0f; | 406 _corrFecCost = 1.0f; |
387 if (estNumFecGen < 1.1f && _protectionFactorD < minProtLevelFec) { | 407 if (estNumFecGen < 1.1f && _protectionFactorD < minProtLevelFec) { |
388 _corrFecCost = 0.5f; | 408 _corrFecCost = 0.5f; |
389 } | 409 } |
390 if (estNumFecGen < 0.9f && _protectionFactorD < minProtLevelFec) { | 410 if (estNumFecGen < 0.9f && _protectionFactorD < minProtLevelFec) { |
391 _corrFecCost = 0.0f; | 411 _corrFecCost = 0.0f; |
392 } | 412 } |
393 | 413 |
| 414 // TODO(marpan): Set the UEP protection on/off for Key and Delta frames |
| 415 _useUepProtectionK = _qmRobustness->SetUepProtection( |
| 416 codeRateKey, parameters->bitRate, packetLoss, 0); |
| 417 |
| 418 _useUepProtectionD = _qmRobustness->SetUepProtection( |
| 419 codeRateDelta, parameters->bitRate, packetLoss, 1); |
| 420 |
394 // DONE WITH FEC PROTECTION SETTINGS | 421 // DONE WITH FEC PROTECTION SETTINGS |
395 return true; | 422 return true; |
396 } | 423 } |
397 | 424 |
398 int VCMFecMethod::BitsPerFrame(const VCMProtectionParameters* parameters) { | 425 int VCMFecMethod::BitsPerFrame(const VCMProtectionParameters* parameters) { |
399 // When temporal layers are available FEC will only be applied on the base | 426 // When temporal layers are available FEC will only be applied on the base |
400 // layer. | 427 // layer. |
401 const float bitRateRatio = | 428 const float bitRateRatio = |
402 kVp8LayerRateAlloction[parameters->numLayers - 1][0]; | 429 kVp8LayerRateAlloction[parameters->numLayers - 1][0]; |
403 float frameRateRatio = powf(1 / 2.0, parameters->numLayers - 1); | 430 float frameRateRatio = powf(1 / 2.0, parameters->numLayers - 1); |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 _shortMaxLossPr255 = 0; | 675 _shortMaxLossPr255 = 0; |
649 Release(); | 676 Release(); |
650 } | 677 } |
651 | 678 |
652 void VCMLossProtectionLogic::Release() { | 679 void VCMLossProtectionLogic::Release() { |
653 _selectedMethod.reset(); | 680 _selectedMethod.reset(); |
654 } | 681 } |
655 | 682 |
656 } // namespace media_optimization | 683 } // namespace media_optimization |
657 } // namespace webrtc | 684 } // namespace webrtc |
OLD | NEW |