Convert channel counts to size_t.
IIRC, this was originally requested by ajm during review of the other size_t conversions I did over the past year, and I agreed it made sense, but wanted to do it separately since those changes were already gargantuan. BUG=chromium:81439 TEST=none R=henrik.lundin@webrtc.org, henrika@webrtc.org, kjellander@webrtc.org, minyue@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org Review URL: https://codereview.webrtc.org/1316523002 . Cr-Commit-Position: refs/heads/master@{#11229}
This commit is contained in:
@ -107,7 +107,7 @@ class NetEqImpl : public webrtc::NetEq {
|
||||
int GetAudio(size_t max_length,
|
||||
int16_t* output_audio,
|
||||
size_t* samples_per_channel,
|
||||
int* num_channels,
|
||||
size_t* num_channels,
|
||||
NetEqOutputType* type) override;
|
||||
|
||||
int RegisterPayloadType(NetEqDecoder codec,
|
||||
@ -220,7 +220,8 @@ class NetEqImpl : public webrtc::NetEq {
|
||||
int GetAudioInternal(size_t max_length,
|
||||
int16_t* output,
|
||||
size_t* samples_per_channel,
|
||||
int* num_channels) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
|
||||
size_t* num_channels)
|
||||
EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
|
||||
|
||||
// Provides a decision to the GetAudioInternal method. The decision what to
|
||||
// do is written to |operation|. Packets to decode are written to
|
||||
|
||||
Reference in New Issue
Block a user