AV1: set error_resilience to 0.
No need to keep error_resilience 1 for layers in AV1 Bug: None Change-Id: I6570d653a34ed2187307154ccdfd9e941ed8f917 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/179742 Reviewed-by: Marco Paniconi <marpan@webrtc.org> Commit-Queue: Jerome Jiang <jianj@google.com> Cr-Commit-Position: refs/heads/master@{#31769}
This commit is contained in:
@ -190,9 +190,7 @@ int LibaomAv1Encoder::InitEncode(const VideoCodec* codec_settings,
|
||||
cfg_.rc_min_quantizer = kQpMin;
|
||||
cfg_.rc_max_quantizer = encoder_settings_.qpMax;
|
||||
cfg_.g_usage = kUsageProfile;
|
||||
if (SvcEnabled()) {
|
||||
cfg_.g_error_resilient = 1;
|
||||
}
|
||||
cfg_.g_error_resilient = 0;
|
||||
// Low-latency settings.
|
||||
cfg_.rc_end_usage = AOM_CBR; // Constant Bit Rate (CBR) mode
|
||||
cfg_.g_pass = AOM_RC_ONE_PASS; // One-pass rate control
|
||||
|
@ -322,7 +322,7 @@ INSTANTIATE_TEST_SUITE_P(
|
||||
/*configured_bitrates=*/
|
||||
{{{0, 0}, DataRate::KilobitsPerSec(70)},
|
||||
{{0, 1}, DataRate::KilobitsPerSec(30)},
|
||||
{{1, 0}, DataRate::KilobitsPerSec(140)},
|
||||
{{1, 0}, DataRate::KilobitsPerSec(110)},
|
||||
{{1, 1}, DataRate::KilobitsPerSec(80)}}}),
|
||||
[](const testing::TestParamInfo<SvcTestParam>& info) {
|
||||
return info.param.name;
|
||||
|
Reference in New Issue
Block a user