Remove temporal layer restriction for forced resolution based fallback.

Bug: none
Change-Id: Id8d30b6759bc6d5a517d1363395d4495251b32fe
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/205860
Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
Commit-Queue: Åsa Persson <asapersson@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33172}
This commit is contained in:
Åsa Persson
2021-02-04 19:00:06 +01:00
committed by Commit Bot
parent b6d87ddd55
commit aab91c7b3a
2 changed files with 2 additions and 3 deletions

View File

@ -50,7 +50,6 @@ struct ForcedFallbackParams {
return enable_resolution_based_switch &&
codec.codecType == kVideoCodecVP8 &&
codec.numberOfSimulcastStreams <= 1 &&
codec.VP8().numberOfTemporalLayers == 1 &&
codec.width * codec.height <= max_pixels;
}