|
|
|
@ -4,7 +4,7 @@
|
|
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2024 Bryan Biedenkapp, N2PLL
|
|
|
|
* Copyright (C) 2024-2025 Bryan Biedenkapp, N2PLL
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
#include "Defines.h"
|
|
|
|
#include "Defines.h"
|
|
|
|
@ -1170,6 +1170,9 @@ void HostBridge::processUDPAudio()
|
|
|
|
pcmLength = __GET_UINT32(buffer, 0U);
|
|
|
|
pcmLength = __GET_UINT32(buffer, 0U);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (m_udpRTPFrames)
|
|
|
|
|
|
|
|
pcmLength = MBE_SAMPLES_LENGTH;
|
|
|
|
|
|
|
|
|
|
|
|
UInt8Array __pcm = std::make_unique<uint8_t[]>(pcmLength);
|
|
|
|
UInt8Array __pcm = std::make_unique<uint8_t[]>(pcmLength);
|
|
|
|
uint8_t* pcm = __pcm.get();
|
|
|
|
uint8_t* pcm = __pcm.get();
|
|
|
|
|
|
|
|
|
|
|
|
|