mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 14:50:39 +01:00
Search and replace gendered terms according to style guide:
https://chromium.googlesource.com/chromium/src/+/master/styleguide/inclusive_code.md#tools Not changin the transcipt in resources/audio_processing/conversational_speech/README.md BUG=webrtc:11680 Change-Id: I36af34e4a4e0ec6161093c0045b7bbe1dbe4eb45 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/177016 Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31514}
This commit is contained in:
parent
26e5046951
commit
55afe3885b
9 changed files with 15 additions and 15 deletions
|
@ -231,7 +231,7 @@ Yes, you still have the right to redistribute and you still have a patent
|
||||||
license for Google's patents that cover the code that Google released.
|
license for Google's patents that cover the code that Google released.
|
||||||
|
|
||||||
|
|
||||||
### What if my competitor uses the code and brings patent litigation against me for something unrelated to the code. Does he or she still have a patent license?
|
### What if my competitor uses the code and brings patent litigation against me for something unrelated to the code. Do they still have a patent license?
|
||||||
|
|
||||||
Yes, he/she still has the right to redistribute and he/she still has a patent
|
Yes, they still have the right to redistribute and they still have a patent
|
||||||
license for Google's patents that cover the code that Google released.
|
license for Google's patents that cover the code that Google released.
|
||||||
|
|
|
@ -185,8 +185,8 @@ public class AppRTCAudioManager {
|
||||||
// Note that, the sensor will not be active until start() has been called.
|
// Note that, the sensor will not be active until start() has been called.
|
||||||
proximitySensor = AppRTCProximitySensor.create(context,
|
proximitySensor = AppRTCProximitySensor.create(context,
|
||||||
// This method will be called each time a state change is detected.
|
// This method will be called each time a state change is detected.
|
||||||
// Example: user holds his hand over the device (closer than ~5 cm),
|
// Example: user holds their hand over the device (closer than ~5 cm),
|
||||||
// or removes his hand from the device.
|
// or removes their hand from the device.
|
||||||
this ::onProximitySensorChangedState);
|
this ::onProximitySensorChangedState);
|
||||||
|
|
||||||
Log.d(TAG, "defaultAudioDevice: " + defaultAudioDevice);
|
Log.d(TAG, "defaultAudioDevice: " + defaultAudioDevice);
|
||||||
|
|
|
@ -43,7 +43,7 @@ namespace webrtc {
|
||||||
//
|
//
|
||||||
// Note that the returned std::string might have been reserved for significantly
|
// Note that the returned std::string might have been reserved for significantly
|
||||||
// more memory than it ends up using. If the caller to EncodeBlobs() intends
|
// more memory than it ends up using. If the caller to EncodeBlobs() intends
|
||||||
// to store the result long-term, he should consider shrink_to_fit()-ing it.
|
// to store the result long-term, they should consider shrink_to_fit()-ing it.
|
||||||
std::string EncodeBlobs(const std::vector<std::string>& blobs);
|
std::string EncodeBlobs(const std::vector<std::string>& blobs);
|
||||||
std::vector<absl::string_view> DecodeBlobs(absl::string_view encoded_blobs,
|
std::vector<absl::string_view> DecodeBlobs(absl::string_view encoded_blobs,
|
||||||
size_t num_of_blobs);
|
size_t num_of_blobs);
|
||||||
|
|
|
@ -230,7 +230,7 @@ TEST(RtcpReceiverTest, InjectSrPacketFromUnknownSender) {
|
||||||
rtcp::SenderReport sr;
|
rtcp::SenderReport sr;
|
||||||
sr.SetSenderSsrc(kUnknownSenderSsrc);
|
sr.SetSenderSsrc(kUnknownSenderSsrc);
|
||||||
|
|
||||||
// The parser will handle report blocks in Sender Report from other than his
|
// The parser will handle report blocks in Sender Report from other than their
|
||||||
// expected peer.
|
// expected peer.
|
||||||
EXPECT_CALL(mocks.rtp_rtcp_impl, OnReceivedRtcpReportBlocks);
|
EXPECT_CALL(mocks.rtp_rtcp_impl, OnReceivedRtcpReportBlocks);
|
||||||
EXPECT_CALL(mocks.bandwidth_observer,
|
EXPECT_CALL(mocks.bandwidth_observer,
|
||||||
|
|
|
@ -28,8 +28,8 @@ class MediaReceiverRtcpObserver {
|
||||||
public:
|
public:
|
||||||
virtual ~MediaReceiverRtcpObserver() = default;
|
virtual ~MediaReceiverRtcpObserver() = default;
|
||||||
|
|
||||||
// All message handlers have default empty implementation. This way user needs
|
// All message handlers have default empty implementation. This way users only
|
||||||
// to implement only those she is interested in.
|
// need to implement the ones they are interested in.
|
||||||
virtual void OnSenderReport(uint32_t sender_ssrc,
|
virtual void OnSenderReport(uint32_t sender_ssrc,
|
||||||
NtpTime ntp_time,
|
NtpTime ntp_time,
|
||||||
uint32_t rtp_time) {}
|
uint32_t rtp_time) {}
|
||||||
|
|
|
@ -1480,7 +1480,7 @@ TEST_F(P2PTransportChannelTest, PeerReflexiveCandidateBeforeSignaling) {
|
||||||
PauseCandidates(1);
|
PauseCandidates(1);
|
||||||
|
|
||||||
// Wait until the callee becomes writable to make sure that a ping request is
|
// Wait until the callee becomes writable to make sure that a ping request is
|
||||||
// received by the caller before his remote ICE credentials are set.
|
// received by the caller before their remote ICE credentials are set.
|
||||||
ASSERT_TRUE_WAIT(ep2_ch1()->selected_connection() != nullptr, kMediumTimeout);
|
ASSERT_TRUE_WAIT(ep2_ch1()->selected_connection() != nullptr, kMediumTimeout);
|
||||||
// Add two sets of remote ICE credentials, so that the ones used by the
|
// Add two sets of remote ICE credentials, so that the ones used by the
|
||||||
// candidate will be generation 1 instead of 0.
|
// candidate will be generation 1 instead of 0.
|
||||||
|
@ -1588,7 +1588,7 @@ TEST_F(P2PTransportChannelTest, PeerReflexiveCandidateBeforeSignalingWithNAT) {
|
||||||
PauseCandidates(1);
|
PauseCandidates(1);
|
||||||
|
|
||||||
// Wait until the callee becomes writable to make sure that a ping request is
|
// Wait until the callee becomes writable to make sure that a ping request is
|
||||||
// received by the caller before his remote ICE credentials are set.
|
// received by the caller before their remote ICE credentials are set.
|
||||||
ASSERT_TRUE_WAIT(ep2_ch1()->selected_connection() != nullptr, kMediumTimeout);
|
ASSERT_TRUE_WAIT(ep2_ch1()->selected_connection() != nullptr, kMediumTimeout);
|
||||||
// Add two sets of remote ICE credentials, so that the ones used by the
|
// Add two sets of remote ICE credentials, so that the ones used by the
|
||||||
// candidate will be generation 1 instead of 0.
|
// candidate will be generation 1 instead of 0.
|
||||||
|
|
|
@ -69,7 +69,7 @@ RTC_NORETURN void rtc_FatalMessage(const char* file, int line, const char* msg);
|
||||||
// the reason that it's better to terminate might simply be that the error
|
// the reason that it's better to terminate might simply be that the error
|
||||||
// handling code isn't in place yet; in production, the reason might be that
|
// handling code isn't in place yet; in production, the reason might be that
|
||||||
// the author of the code truly believes that x will always be true, but that
|
// the author of the code truly believes that x will always be true, but that
|
||||||
// she recognizes that if she is wrong, abrupt and unpleasant process
|
// they recognizes that if they are wrong, abrupt and unpleasant process
|
||||||
// termination is still better than carrying on with the assumption violated.
|
// termination is still better than carrying on with the assumption violated.
|
||||||
//
|
//
|
||||||
// RTC_CHECK always evaluates its argument, so it's OK for x to have side
|
// RTC_CHECK always evaluates its argument, so it's OK for x to have side
|
||||||
|
|
|
@ -46,8 +46,8 @@ namespace webrtc_pc_e2e {
|
||||||
// callback, where video analyzer will be called again and then decoded frame
|
// callback, where video analyzer will be called again and then decoded frame
|
||||||
// will be passed to origin callback, provided by user.
|
// will be passed to origin callback, provided by user.
|
||||||
//
|
//
|
||||||
// Quality decoder registers its own callback in origin decoder at the same
|
// Quality decoder registers its own callback in origin decoder, at the same
|
||||||
// time, when user registers his callback in quality decoder.
|
// time the user registers their callback in quality decoder.
|
||||||
class QualityAnalyzingVideoDecoder : public VideoDecoder {
|
class QualityAnalyzingVideoDecoder : public VideoDecoder {
|
||||||
public:
|
public:
|
||||||
// Creates analyzing decoder. |id| is unique coding entity id, that will
|
// Creates analyzing decoder. |id| is unique coding entity id, that will
|
||||||
|
|
|
@ -50,8 +50,8 @@ constexpr int kAnalyzeAnySpatialStream = -1;
|
||||||
// injected into EncodedImage with passed EncodedImageDataInjector. Then new
|
// injected into EncodedImage with passed EncodedImageDataInjector. Then new
|
||||||
// EncodedImage will be passed to origin callback, provided by user.
|
// EncodedImage will be passed to origin callback, provided by user.
|
||||||
//
|
//
|
||||||
// Quality encoder registers its own callback in origin encoder at the same
|
// Quality encoder registers its own callback in origin encoder, at the same
|
||||||
// time, when user registers his callback in quality encoder.
|
// time the user registers their callback in quality encoder.
|
||||||
class QualityAnalyzingVideoEncoder : public VideoEncoder,
|
class QualityAnalyzingVideoEncoder : public VideoEncoder,
|
||||||
public EncodedImageCallback {
|
public EncodedImageCallback {
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in a new issue