Add circus pcm audio support

This commit is contained in:
2025-08-03 19:41:44 +08:00
parent ec3088e2bf
commit dc04dd1ab1
10 changed files with 932 additions and 2 deletions

View File

@@ -613,7 +613,7 @@ pub fn struct_unpack_derive(input: TokenStream) -> TokenStream {
}
let p = cur.unwrap_or_else(|| {
quote::quote! {
let #field_name = #field_type::unpack(&mut reader, big, encoding)?;
let #field_name = <#field_type>::unpack(&mut reader, big, encoding)?;
}
});
if let Some(skip_if) = skip_if {