| Index: webrtc/api/video/video_content_type.cc
|
| diff --git a/webrtc/api/video/video_content_type.cc b/webrtc/api/video/video_content_type.cc
|
| index 351cfeefb600f1c189fe5167a47439c3079b8584..3839ff4f2bcdc52746f997601cb8ad646d6d5aa0 100644
|
| --- a/webrtc/api/video/video_content_type.cc
|
| +++ b/webrtc/api/video/video_content_type.cc
|
| @@ -48,8 +48,7 @@ static constexpr uint8_t kTotalBitsSize =
|
| kScreenshareBitsSize + kSimulcastBitsSize + kExperimentBitsSize;
|
| } // namespace
|
|
|
| -bool SetExperimentId(VideoContentType* content_type,
|
| - uint8_t experiment_id) {
|
| +bool SetExperimentId(VideoContentType* content_type, uint8_t experiment_id) {
|
| // Store in bits 2-4.
|
| if (experiment_id >= (1 << kExperimentBitsSize))
|
| return false;
|
| @@ -59,8 +58,7 @@ bool SetExperimentId(VideoContentType* content_type,
|
| return true;
|
| }
|
|
|
| -bool SetSimulcastId(VideoContentType* content_type,
|
| - uint8_t simulcast_id) {
|
| +bool SetSimulcastId(VideoContentType* content_type, uint8_t simulcast_id) {
|
| // Store in bits 5-6.
|
| if (simulcast_id >= (1 << kSimulcastBitsSize))
|
| return false;
|
|
|