Displaying 3 results from an estimated 3 matches for "flac_restrict".
2013 Oct 09
1
PATCH: use restrict keyword to make en/decoding faster
This patch adds flac_restrict to share/compat.h and adds it to
arguments of ...lpc_compute_residual...()/...lpc_restore_signal...() functions.
As a result, FLAC__lpc_compute_residual_from_qlp_coefficients_wide_intrin_sse41()
now offers no advantage for 64-bit compiles and was removed from x86-64 part of
stream_encoder.c
------...
2014 Apr 09
1
[PATCH] Suppress MSVS warnings for lpc.c
When compiling lpc.c for x86-64 architecture MSVS issues warnings:
warning C4028: formal parameter _N_ different from declaration
because of flac_restrict modifier. This patch suppresses these warnings.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: lpc-msvs-warnings.patch
Type: application/octet-stream
Size: 1025 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20140409/2373fd1...
2014 May 10
1
PATCH for fixed.c/fixed.h
Tests show that FLAC__fixed_compute_residual/FLAC__fixed_restore_signal
are slightly faster when flac_restrict modifier is added to their arguments.
(Encoding speed increase for flac -8 is about 2%. The difference is
not very big yet measurable).
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fixed.patch
Type: application/octet-stream
Size: 2503 bytes
Desc: not availabl...