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:
Ali Tofigh
2022-01-25 13:27:19 +01:00
committed by WebRTC LUCI CQ
parent c98687a2ef
commit 62238097c9
56 changed files with 235 additions and 238 deletions

View File

@ -28,11 +28,11 @@ class TestPacketization : public AudioPacketizationCallback {
public:
TestPacketization(RTPStream* rtpStream, uint16_t frequency);
~TestPacketization();
int32_t SendData(const AudioFrameType frameType,
const uint8_t payloadType,
const uint32_t timeStamp,
int32_t SendData(AudioFrameType frameType,
uint8_t payloadType,
uint32_t timeStamp,
const uint8_t* payloadData,
const size_t payloadSize,
size_t payloadSize,
int64_t absolute_capture_timestamp_ms) override;
private: