Fix xchunk processor not resetting input buffer size

This commit is contained in:
Jan 2021-03-18 11:47:55 +01:00
parent 2add1ba22d
commit 50808bfad7

View File

@ -53,6 +53,7 @@ void OutputProcessorXChunks::WriteChunk()
} }
m_current_stream = (m_current_stream + 1) % m_stream_count; m_current_stream = (m_current_stream + 1) % m_stream_count;
m_input_size = 0;
} }
OutputProcessorXChunks::OutputProcessorXChunks(const int numStreams, const size_t xChunkSize, const size_t xChunkWriteSize) OutputProcessorXChunks::OutputProcessorXChunks(const int numStreams, const size_t xChunkSize, const size_t xChunkWriteSize)