Skip to content

Commit

Permalink
"Multiplication result converted to larger type" in client.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pljones committed Aug 28, 2023
1 parent 402e0de commit b82bd61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,8 @@ void CClient::ProcessSndCrdAudioData ( CVector<int16_t>& vecsStereoSndCrd )

void CClient::ProcessAudioDataIntern ( CVector<int16_t>& vecsStereoSndCrd )
{
int i, j, iUnused;
int_fast8_t i, j;
int iUnused;
unsigned char* pCurCodedData;

// Transmit signal ---------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/client.h
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,10 @@ class CClient : public QObject
OpusCustomDecoder* CurOpusDecoder;
EAudComprType eAudioCompressionType;
int iCeltNumCodedBytes;
int iOPUSFrameSizeSamples;
uint_fast8_t iOPUSFrameSizeSamples;
EAudioQuality eAudioQuality;
EAudChanConf eAudioChannelConf;
int iNumAudioChannels;
uint_fast8_t iNumAudioChannels;
bool bIsInitializationPhase;
bool bMuteOutStream;
float fMuteOutStreamGain;
Expand Down

0 comments on commit b82bd61

Please sign in to comment.