mirror of
https://github.com/RGBCube/serenity
synced 2025-06-18 10:52:07 +00:00
LibAudio: Use new Vector formatter
This commit is contained in:
parent
1e1fa4eac4
commit
f634949d26
1 changed files with 1 additions and 9 deletions
|
@ -639,15 +639,7 @@ Vector<i32> FlacLoaderPlugin::decode_custom_lpc(FlacSubframeHeader& subframe, In
|
||||||
coefficients.unchecked_append(coefficient);
|
coefficients.unchecked_append(coefficient);
|
||||||
}
|
}
|
||||||
|
|
||||||
if constexpr (AFLACLOADER_DEBUG) {
|
dbgln_if(AFLACLOADER_DEBUG, "{}-bit {} shift coefficients: {}", lpc_precision, lpc_shift, coefficients);
|
||||||
StringBuilder coefficients_formatted;
|
|
||||||
coefficients_formatted.append("[ ");
|
|
||||||
for (auto coeff : coefficients) {
|
|
||||||
coefficients_formatted.append(String::formatted("{}, ", coeff));
|
|
||||||
}
|
|
||||||
coefficients_formatted.append("]");
|
|
||||||
dbgln("{}-bit {} shift coefficients: {}", lpc_precision, lpc_shift, coefficients_formatted.to_string());
|
|
||||||
}
|
|
||||||
|
|
||||||
// decode residual
|
// decode residual
|
||||||
// FIXME: This order may be incorrect, the LPC is applied to the residual, probably leading to incorrect results.
|
// FIXME: This order may be incorrect, the LPC is applied to the residual, probably leading to incorrect results.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue