When we want to stream 24 bits:
- do we have to set
LinearPcmFlags::IS_PACKED as the format flag?
- For the render callback, we have to use
i32 as the data type, yes?
- Getting an assertion failure on this line :
assert!(mDataByteSize as usize == expected_size);
- where
expected_size is 4096 while mDatabyteSize is only 3072
Or is there an issue with supporting 24 bits at the moment?
When we want to stream 24 bits:
LinearPcmFlags::IS_PACKEDas the format flag?i32as the data type, yes?assert!(mDataByteSize as usize == expected_size);expected_sizeis 4096 whilemDatabyteSizeis only 3072Or is there an issue with supporting 24 bits at the moment?