Skip to content

Commit 95e5b2d

Browse files
authored
VPLAY-11830 Correct spelling in comments: "dont" to "don't" (#694)
VPLAY-11830 Correct spelling in comments: "dont" to "don't" Reason for Change: copilot noticed that we have "dont" misspelled in our code Test Guidance: code compiles - no functional change as review only touches comments Risk: None --------- Signed-off-by: Philip Stroffolino <[email protected]>
1 parent 9ef3cb0 commit 95e5b2d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

priv_aamp.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4576,7 +4576,7 @@ bool PrivateInstanceAAMP::GetFile( std::string remoteUrl, AampMediaType mediaTyp
45764576
mediaType = eMEDIATYPE_IFRAME;
45774577
}
45784578

4579-
// dont generate anomaly reports for write and aborted errors
4579+
// don't generate anomaly reports for write and aborted errors
45804580
// these are generated after trick play options,
45814581
if( !(http_code == CURLE_ABORTED_BY_CALLBACK || http_code == CURLE_WRITE_ERROR || http_code == 204))
45824582
{
@@ -5236,7 +5236,7 @@ void PrivateInstanceAAMP::TuneHelper(TuneType tuneType, bool seekWhilePaused)
52365236
// send previous tune VideoEnd Metrics data
52375237
// this is done here because events are cleared on stop and there is chance that event may not get sent
52385238
// check for mEnableVideoEndEvent and call SendVideoEndEvent ,object mVideoEnd is created inside SendVideoEndEvent
5239-
if(mTuneAttempts == 1) // only for first attempt, dont send event when JSPP retunes.
5239+
if(mTuneAttempts == 1) // only for first attempt, don't send event when JSPP retunes.
52405240
{
52415241
SendVideoEndEvent();
52425242
}
@@ -5702,7 +5702,7 @@ void PrivateInstanceAAMP::TuneHelper(TuneType tuneType, bool seekWhilePaused)
57025702
if(!mIsFakeTune)
57035703
{
57045704
AAMPLOG_INFO("mCCId: %d",mCCId);
5705-
// if mCCId has non zero value means it is same instance and cc release was not callee then dont get id. if zero then call getid.
5705+
// if mCCId has non zero value means it is same instance and cc release was not callee then don't get id. if zero then call getid.
57065706
if(mCCId == 0 )
57075707
{
57085708
mCCId = PlayerCCManager::GetInstance()->GetId();
@@ -12503,7 +12503,7 @@ void PrivateInstanceAAMP::SetPreferredTextLanguages(const char *param)
1250312503
{
1250412504
/**< Avoid retuning in case of HEMIIN and COMPOSITE IN*/
1250512505
}
12506-
else if (isSelectionChange && closedCaptionTrackId == -1) /* dont tune if we are using closedCaptions*/
12506+
else if (isSelectionChange && closedCaptionTrackId == -1) /* don't tune if we are using closedCaptions*/
1250712507
{
1250812508
discardEnteringLiveEvt = true;
1250912509
mOffsetFromTunetimeForSAPWorkaround = (double)(aamp_GetCurrentTimeMS() / 1000) - mLiveOffset;

tsFragmentProcessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ void TSFragmentProcessor::DemuxFragment(const uint8_t * base_packet_ptr, size_t
562562
/* Audio is not playing in particular hls file.
563563
* We always choose the first audio pid to play the audio data, even if we
564564
* have multiple audio tracks in the PMT Table.
565-
* But in one particular hls file, we dont have PES data in the first audio pid.
565+
* But in one particular hls file, we don't have PES data in the first audio pid.
566566
* So, we have now modified to choose the next available audio pid index,
567567
* when there is no PES data available in the current audio pid.
568568
*/

tsprocessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ bool TSProcessor::demuxAndSend(const void *ptr, size_t len, double position, dou
15981598
/* Audio is not playing in particular hls file.
15991599
* We always choose the first audio pid to play the audio data, even if we
16001600
* have multiple audio tracks in the PMT Table.
1601-
* But in one particular hls file, we dont have PES data in the first audio pid.
1601+
* But in one particular hls file, we don't have PES data in the first audio pid.
16021602
* So, we have now modified to choose the next available audio pid index,
16031603
* when there is no PES data available in the current audio pid.
16041604
*/

0 commit comments

Comments
 (0)