Remove more top-level const from parameters in function declarations
This CL removes even more top-level const from parameters in function declarations. This change is safe because top-level const in function declarations (not function definitions) are ignored by the compiler and so change is just a no-op cleanup. Bug: webrtc:13610 Change-Id: Icf6868c27b1fdb9d9915b3a7020eb34bdcf07a09 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/249989 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Ali Tofigh <alito@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35866}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
b6653d9967
commit
1e157a9596
@ -185,7 +185,7 @@ class VideoProcessor {
|
||||
// lower layer frames, we merge and store the layer frames in this method.
|
||||
const webrtc::EncodedImage* BuildAndStoreSuperframe(
|
||||
const EncodedImage& encoded_image,
|
||||
const VideoCodecType codec,
|
||||
VideoCodecType codec,
|
||||
size_t frame_number,
|
||||
size_t simulcast_svc_idx,
|
||||
bool inter_layer_predicted) RTC_RUN_ON(sequence_checker_);
|
||||
|
||||
@ -47,9 +47,8 @@ class FecControllerDefault : public FecController {
|
||||
uint8_t fraction_lost,
|
||||
std::vector<bool> loss_mask_vector,
|
||||
int64_t round_trip_time_ms) override;
|
||||
void UpdateWithEncodedData(
|
||||
const size_t encoded_image_length,
|
||||
const VideoFrameType encoded_image_frametype) override;
|
||||
void UpdateWithEncodedData(size_t encoded_image_length,
|
||||
VideoFrameType encoded_image_frametype) override;
|
||||
bool UseLossVectorMask() override;
|
||||
float GetProtectionOverheadRateThreshold();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user