This commit is contained in:
phl0 2017-11-06 12:56:27 +01:00
parent a961a39b50
commit 8482f85478
No known key found for this signature in database
GPG Key ID: 48EA1E640798CA9A
3 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ bool CCodecStream::Init(uint16 uiPort)
m_bStopThread = false;
// create server's IP
m_Ip = g_Reflector.GetTrasncoderIp();
m_Ip = g_Reflector.GetTranscoderIp();
m_uiPort = uiPort;
// create our socket

View File

@ -60,7 +60,7 @@ public:
void SetListenIp(const CIp &ip) { m_Ip = ip; }
void SetTranscoderIp(const CIp &ip) { m_AmbedIp = ip; }
const CIp &GetListenIp(void) const { return m_Ip; }
const CIp &GetTrasncoderIp(void) const { return m_AmbedIp; }
const CIp &GetTranscoderIp(void) const { return m_AmbedIp; }
// operation
bool Start(void);

View File

@ -94,7 +94,7 @@ bool CTranscoder::Init(void)
m_bStopThread = false;
// create server's IP
m_Ip = g_Reflector.GetTrasncoderIp();
m_Ip = g_Reflector.GetTranscoderIp();
// create our socket
ok = m_Socket.Open(TRANSCODER_PORT);