Fixes payload spelling error.

BUG=N/A

Review URL: https://webrtc-codereview.appspot.com/1052006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3398 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrike@webrtc.org 2013-01-22 16:43:45 +00:00
parent 5accd370e7
commit 09738616de
4 changed files with 4 additions and 4 deletions

View File

@ -557,7 +557,7 @@ extern "C" {
* i.e. 10000 to 56000.
* - isRCU : if the new bit-stream is an RCU stream.
* Note that the rate parameter always indicates
* the target rate of the main paylaod, regardless
* the target rate of the main payload, regardless
* of 'isRCU' value.
*
* Output:

View File

@ -345,7 +345,7 @@ typedef struct {
/*-----
This records the BWE index the encoder injected into the bit-stream.
It will be used in RCU. The same BWE index of main paylaod will be in
It will be used in RCU. The same BWE index of main payload will be in
the redundant payload. We can not retrive it from BWE because it is
a recursive procedure (WebRtcIsac_GetDownlinkBwJitIndexImpl) and has to be
called only once per each encode.

View File

@ -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;
}

View File

@ -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.