output/osx: change type to std::size_t to fix -Wc++11-narrowing

This commit is contained in:
Max Kellermann 2023-01-23 14:06:51 +01:00
parent 65b9b3195c
commit 1170fb1e1e

View File

@ -627,7 +627,7 @@ osx_render(void *vdata,
{ {
OSXOutput *od = (OSXOutput *) vdata; OSXOutput *od = (OSXOutput *) vdata;
int count = in_number_frames * od->asbd.mBytesPerFrame; std::size_t count = in_number_frames * od->asbd.mBytesPerFrame;
buffer_list->mBuffers[0].mDataByteSize = buffer_list->mBuffers[0].mDataByteSize =
od->ring_buffer->pop((uint8_t *)buffer_list->mBuffers[0].mData, od->ring_buffer->pop((uint8_t *)buffer_list->mBuffers[0].mData,
count); count);