Merging //UE4/Dev-Main to Dev-Build (//UE4/Dev-Build)

#rb none

[CL 4577636 by Ben Marsh in Dev-Build branch]
This commit is contained in:
Ben Marsh
2018-11-19 10:12:17 -05:00
parent 9f1b2261a8
commit b0da1f4fe7
1699 changed files with 69042 additions and 23007 deletions
@@ -451,8 +451,11 @@ public:
// Use a base chunk size of MONO_PCM_BUFFER_SIZE * 2 because Android uses MONO_PCM_BUFFER_SIZE to submit buffers to the os, the streaming system has more scheduling flexability when the chunk size is
// larger the the buffer size submitted to the OS
#if PLATFORM_ANDROID
uint32 ChunkSize = MONO_PCM_BUFFER_SIZE * 2 * QualityInfo.NumChannels;
#else
uint32 ChunkSize = MaxChunkSize;
#endif
while(SrcSize > 0)
{
int32 CurChunkDataSize = FMath::Min<uint32>(SrcSize, ChunkSize);