output/osx: change type to std::size_t to fix -Wc++11-narrowing
This commit is contained in:
parent
65b9b3195c
commit
1170fb1e1e
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user