Remove top-level const from parameters in function declarations.
This is a safe cleanup change since top-level const applied to parameters in function declarations (that are not also definitions) are ignored by the compiler. Hence, such changes do not change the type of the declared functions and are simply no-ops. Bug: webrtc:13610 Change-Id: Ibafb92c45119a6d8bdb6f9109aa8dad6385163a9 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/249086 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Ali Tofigh <alito@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35802}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
c98687a2ef
commit
62238097c9
@ -64,10 +64,10 @@ class SimulcastTestFixtureImpl final : public SimulcastTestFixture {
|
||||
void SetUpCodec(const int* temporal_layer_profile);
|
||||
void SetUpRateAllocator();
|
||||
void SetRates(uint32_t bitrate_kbps, uint32_t fps);
|
||||
void RunActiveStreamsTest(const std::vector<bool> active_streams);
|
||||
void UpdateActiveStreams(const std::vector<bool> active_streams);
|
||||
void RunActiveStreamsTest(std::vector<bool> active_streams);
|
||||
void UpdateActiveStreams(std::vector<bool> active_streams);
|
||||
void ExpectStreams(VideoFrameType frame_type,
|
||||
const std::vector<bool> expected_streams_active);
|
||||
std::vector<bool> expected_streams_active);
|
||||
void ExpectStreams(VideoFrameType frame_type, int expected_video_streams);
|
||||
void VerifyTemporalIdxAndSyncForAllSpatialLayers(
|
||||
TestEncodedImageCallback* encoder_callback,
|
||||
|
||||
Reference in New Issue
Block a user