<div dir="ltr">If we're worried about machine compatibility of SSE2, it may be helpful to note that it was introduced with the Pentium4 in 2000 and the Athlon64 in 2003.  With the exception of the Quark line of processors, no important x86 processor in recent years has lacked SSE2 support.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jun 28, 2021 at 5:59 AM Martijn van Beurden <<a href="mailto:mvanb1@gmail.com">mvanb1@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Op ma 28 jun. 2021 om 09:45 schreef Brian Willoughby <<a href="mailto:brianw@audiobanshee.com" target="_blank">brianw@audiobanshee.com</a>>:<br>
> 1) What would affect the ability of an embedded FLAC firmware to decode certain files?<br>
><br>
> Is it possible that the SD702 is not capable of processing complex predictors of higher orders?<br>
<br>
I cannot say for this specific case. If you would encode a file with<br>
all settings -0 through -8 and try playing them, it would be possible<br>
to draw conclusions. Have you done this before? The manual of the<br>
product you mention does not seem to list any limitations, and<br>
according to several sources, for most embedded devices FLAC decoding<br>
is much easier than MP3 decoding. See<br>
<a href="https://www.rockbox.org/wiki/CodecPerformanceComparison" rel="noreferrer" target="_blank">https://www.rockbox.org/wiki/CodecPerformanceComparison</a><br>
<br>
If only setting -0 and -3 play, the unit does not do mid-side<br>
decoding. If only -0, -1 and -2 play, the unit does only fixed<br>
predictor decoding. If only -0, -1, -2 and -3 play, the unit does not<br>
support predictor order larger than 6. If only -0, -1, -2, -3, -4, -5<br>
and -6 play, the unit does not support predictor orders larger than 8.<br>
If none of these work, perhaps the unit only plays files it made<br>
itself.<br>
<br>
> 2) Is there a strict definition of the 9 levels of FLAC coding such that the level would<br>
> precisely determine the predictor?<br>
><br>
> I haven't looked at the source in ages, but it seems like you're saying that the compression<br>
> level might map to exact choices for model/predictor.<br>
<br>
There is no definition of the levels in the format specification, it<br>
just hasn't changed in all these years for the reference encoder. The<br>
*only* change the last 20 years was that level 7 went from max order 8<br>
to max order 12 in version 1.3.1. However, other FLAC encoders like<br>
Flake and FLACCL define levels differently.<br>
<br>
> 3) Can you explain why the encoded file should be exactly the same across different<br>
> processors or implementations? I'm still fuzzy on the details, but it seems like the<br>
> exact bits could still vary even with the same model - i.e. "exhaustive" implies that<br>
> different implementations might stop at different points along the way.<br>
<br>
The change I propose is changing autocorrelation calculation from<br>
single-precision floats to double precisions floats. However, it is<br>
impossible to implement this change in the current SSE code, because<br>
SSE cannot work with double precision floats. To use double precision,<br>
SSE2 is needed. My question was: should I replace the SSE routines<br>
with SSE2 routines, or should I keep the SSE routines as well? The<br>
choice for platforms with SSE but without SSE2 is between speed and<br>
compression. If the SSE routines are kept, the speed will stay the<br>
same but there won't be a compression improvement. If the SSE routines<br>
are dropped, the regular code that doesn't use any special extensions<br>
is used, so doubles can be used. This results in a large speed<br>
decrease but compression improves.<br>
<br>
If the SSE code is kept around and the VSX code is updated as well,<br>
all platforms (ARM, PPC, x86, etc.) will produce almost the exact same<br>
result when compressing a file with a certain setting, except those<br>
with SSE but without SSE2.<br>
_______________________________________________<br>
flac-dev mailing list<br>
<a href="mailto:flac-dev@xiph.org" target="_blank">flac-dev@xiph.org</a><br>
<a href="http://lists.xiph.org/mailman/listinfo/flac-dev" rel="noreferrer" target="_blank">http://lists.xiph.org/mailman/listinfo/flac-dev</a><br>
</blockquote></div>