We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e156d commit 078a4dfCopy full SHA for 078a4df
examples/ios/src/feedback.rs
@@ -36,7 +36,8 @@ pub fn run_example() -> Result<(), coreaudio::Error> {
36
SampleFormat::F32 => LinearPcmFlags::IS_FLOAT,
37
SampleFormat::I32 | SampleFormat::I16 | SampleFormat::I8 => {
38
LinearPcmFlags::IS_SIGNED_INTEGER
39
- }
+ },
40
+ SampleFormat::I24 => { unimplemented!("Not implemented for I24")},
41
};
42
43
// Using IS_NON_INTERLEAVED everywhere because data::Interleaved is commented out / not implemented
0 commit comments