Displaying 4 results from an estimated 4 matches for "stream_encoder_intrin_ssse3".
2014 Jun 19
7
[PATCH] stream_encoder : Improve selection of residual accumulator width
...4-bit accumulator with
very large 16-bit partitions.
This is related to commits 6f7ec60c and 187e596e.
---
src/libFLAC/include/private/stream_encoder.h | 6 ++++++
src/libFLAC/stream_encoder.c | 14 ++++++--------
src/libFLAC/stream_encoder_intrin_sse2.c | 3 ++-
src/libFLAC/stream_encoder_intrin_ssse3.c | 3 ++-
4 files changed, 16 insertions(+), 10 deletions(-)
diff --git a/src/libFLAC/include/private/stream_encoder.h b/src/libFLAC/include/private/stream_encoder.h
index d26039a..8147f9e 100644
--- a/src/libFLAC/include/private/stream_encoder.h
+++ b/src/libFLAC/include/private/stream_encod...
2016 Apr 25
1
MSVC 2015: problem after update2
Anybody still has MSVC 2015 update 1?
It seems that MSVC 2015U2 miscompiles stream_encoder_intrin_sse2.c,
stream_encoder_intrin_ssse3.c (and probably stream_encoder_intrin_avx2.c, but
currently I cannot test it 'cause I don't have avx2 CPU).
I wonder what happened and what changed in the asm code that MSVC generates.
2019 Jul 14
8
Prelease now available
Hi all,
I have a new pre-reelase (with a GPG signature) up here:
http://mega-nerd.com/tmp/flac-1.3.3rc1.tar.xz
http://mega-nerd.com/tmp/flac-1.3.3rc1.tar.xz.asc
This code is built from commit 10a28d482a8e48b806f61ab766992b2add98ec43
plus another commmit to change the version numbers which I will
not be pushing to the public repo before the final release.
Note that audio files encoded
2013 Sep 17
2
PATCH: x86-64 support and SSE intrinscis code
Erik de Castro Lopo <mle+la at mega-nerd.com> wrote:
>> -msse for SSE code, -msse2 for SSE2 code, -msse4.1 for SSE4.1 code
>
> Yes, that was it. Brain fart. These flags were not needed on x86_64.
>
> Erik
But now all C code is compiled with -msse2 and it won't work on older CPUs.
Isn't it better to compile only necessary files with this flag?