summaryrefslogtreecommitdiff
path: root/voice_engine
diff options
context:
space:
mode:
authorhenrike@webrtc.org <henrike@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-01-22 16:43:45 +0000
committerhenrike@webrtc.org <henrike@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-01-22 16:43:45 +0000
commit754768092b59110bff7aeb4dda7a938a0796a22b (patch)
tree846d9f7f932b5f5c2e33fc3244d3d4bad6ba31f8 /voice_engine
parent264c0d7ef9e23b5a3ac83306cc9c57eb48c5c101 (diff)
downloadwebrtc-754768092b59110bff7aeb4dda7a938a0796a22b.tar.gz
Fixes payload spelling error.
BUG=N/A Review URL: https://webrtc-codereview.appspot.com/1052006 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@3398 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine')
-rw-r--r--voice_engine/channel.cc2
-rw-r--r--voice_engine/voe_codec_unittest.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/voice_engine/channel.cc b/voice_engine/channel.cc
index 357eb0ff..468b2bc7 100644
--- a/voice_engine/channel.cc
+++ b/voice_engine/channel.cc
@@ -6666,7 +6666,7 @@ int Channel::SetRedPayloadType(int red_payload_type) {
if (red_payload_type < 0) {
_engineStatisticsPtr->SetLastError(
VE_PLTYPE_ERROR, kTraceError,
- "SetRedPayloadType() invalid RED paylaod type");
+ "SetRedPayloadType() invalid RED payload type");
return -1;
}
diff --git a/voice_engine/voe_codec_unittest.cc b/voice_engine/voe_codec_unittest.cc
index 8bd4a276..e473ddf1 100644
--- a/voice_engine/voe_codec_unittest.cc
+++ b/voice_engine/voe_codec_unittest.cc
@@ -433,7 +433,7 @@ TEST_F(VoECodecTest, DualStreamRegisterWithWrongInputsFails) {
EXPECT_EQ(-1, voe_codec_->SetSecondarySendCodec(channel_, invalid_secondary_,
red_payload_type_));
- // Wrong paylaod.
+ // Wrong payload.
EXPECT_EQ(-1, voe_codec_->SetSecondarySendCodec(channel_, valid_secondary_,
-1));
// Wrong channel.