search for: lpc_restore_signal_16_intrin_sse2

Displaying 5 results from an estimated 5 matches for "lpc_restore_signal_16_intrin_sse2".

2015 Mar 09
3
crash on lpc_restore_signal_16_intrin_sse2
Hi, VLC recently migrated to libflac 1.3.1, however we had to revert to 1.3.0 as we had crashes for most FLAC files on the Windows desktop platform. More information is available here: https://trac.videolan.org/vlc/ticket/14104 Best, Tristan
2015 Mar 09
2
crash on lpc_restore_signal_16_intrin_sse2
On 9.3.2015 19:06, lvqcl wrote: > Tristan Matthews wrote: > >> Hi, >> >> VLC recently migrated to libflac 1.3.1, however we had to revert to >> 1.3.0 as we had crashes for most FLAC files on the Windows desktop >> platform. >> >> More information is available here: >> https://trac.videolan.org/vlc/ticket/14104 > Cannot reproduce the crash
2015 Mar 09
2
crash on lpc_restore_signal_16_intrin_sse2
...Hyv?rinen wrote: > >> VLC 2.2.0 crashed with exception 0xc0000005 on the first file I tried. >> But libflac itself does not, for example flac.exe and foobar2000 have no >> issues. > *Very* interesting. > > I suspect that flac.exe and foobar2000 don't use > FLAC__lpc_restore_signal_16_intrin_sse2() function at all. This function > is not used if NASM is available; FLAC__lpc_restore_signal_asm_ia32_mmx() > is used instead. > > I wonder how to debug this crash... > I compiled flac.exe without NASM and verified that FLAC__lpc_restore_signal_16_intrin_sse2 is used. Decoding the...
2015 Mar 09
2
crash on lpc_restore_signal_16_intrin_sse2
On Mon, Mar 9, 2015 at 5:15 PM, lvqcl <lvqcl.mail at gmail.com> wrote: > Janne Hyv?rinen wrote: > >> I compiled flac.exe without NASM and verified that >> FLAC__lpc_restore_signal_16_intrin_sse2 is used. Decoding the same file >> that made VLC 2.2 crash decoded without issues. Would be nice if VLC was >> compilable with MSVC and we could use its debugger. >> > > VLC 2.2.0 crashes here inside WinXP VM on instruction: > > movaps xmmword ptr [esp+10h], xmm7...
2016 Mar 18
2
Link errors on IA32
Has anyone tried to build flac with the INTEGER_ONLY_LIBRARY flag set lately? I'm getting link errors on IA32 for the SSE optimizations lpc_restore_signal_16_intrin_sse2 and lpc_restore_signal_wide_intrin_sse41. Looks like a define check is missing since the implementation of these functions is only included when not building for integer. I had to exclude them at libFLAC/stream_decoder.c:408 by adding a check for !FLAC__INTEGER_ONLY_LIBRARY. //Joakim -------------...