From 07a4ba5d1a278cd14d564408dfd06d6c9dc4e1e9 Mon Sep 17 00:00:00 2001 From: Niklas Enbom Date: Tue, 24 Mar 2015 07:47:55 -0700 Subject: [PATCH] Simulcast settings for 1080p. Using same bit rates for all 3 modes since only one is used in reality, and the plan is to unify them. BUG= R=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/45779004 Cr-Commit-Position: refs/heads/master@{#8849} --- talk/media/webrtc/simulcast.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/talk/media/webrtc/simulcast.cc b/talk/media/webrtc/simulcast.cc index 82191c3c2..ffd623fa2 100755 --- a/talk/media/webrtc/simulcast.cc +++ b/talk/media/webrtc/simulcast.cc @@ -57,6 +57,7 @@ struct SimulcastFormat { // simulcast layers at what bitrates (maximum, target, and minimum). // Important!! Keep this table from high resolution to low resolution. const SimulcastFormat kSimulcastFormats[] = { + {1920, 1080, 3, {5000, 5000, 5000}, {4000, 4000, 4000}, {800, 800, 800}}, {1280, 720, 3, {1200, 1200, 2500}, {1200, 1200, 2500}, {500, 600, 600}}, {960, 540, 3, {900, 900, 900}, {900, 900, 900}, {350, 450, 450}}, {640, 360, 2, {500, 700, 700}, {500, 500, 500}, {100, 150, 150}},