search for: dflac__overflow_detect

Displaying 13 results from an estimated 13 matches for "dflac__overflow_detect".

2004 Sep 10
1
automake 1.5
Skipped content of type multipart/mixed-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20011018/019c9936/attachment.pgp
2004 Sep 10
2
AMD debugging test files available
...here is pointer > aliasing in flac and the plugins) I compiled from CVS using Makefile.lite today and I got exactly the same verification errors except iits2430.wav which didn't produce any error. I set the libFLAC Makefile options such that the compile command was: gcc -g -O0 -DDEBUG -DFLAC__OVERFLOW_DETECT -march=i386 -Wall -W -DVERSION=\"1.0.3\" -DFLAC__CPU_UNKNOWN -DFLAC__NO_NASM -DFLAC__ALIGN_MALLOC_DATA -I./include -I../../include Compiler is gcc 2.95.4 I will try running memtest86 as Matt did to see if that could be the problem. Thanks, Jon
2012 Dec 12
1
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
Small remark: > diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am > index 13ab593..aa88100 100644 > --- a/src/libFLAC/Makefile.am > +++ b/src/libFLAC/Makefile.am > @@ -34,6 +34,9 @@ noinst_LTLIBRARIES = libFLAC-static.la > if DEBUG > DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT > endif > + > +# FIXME: The following logic should be part of configure, not of Makefile.am > + > if FLaC__CPU_PPC > # The -force_cpusubtype_ALL is needed to insert a ppc64 instruction > # into cpu.c with an asm(). I committed this FIXME comment by mistake, although I stand by...
2012 Dec 03
0
[PATCH 3/5] Hide symbols with gcc.
...FLAC/Makefile.am index b20e21a..a63a3d0 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -30,6 +30,7 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include lib_LTLIBRARIES = libFLAC.la +noinst_LTLIBRARIES = libFLAC-static.la if DEBUG DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT endif @@ -106,7 +107,8 @@ extra_ogg_sources = \ endif # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention libFLAC_la_LDFLAGS = -version-info 10:0:2 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@ -libFLAC_la_SOURCES = \ + +libFLAC_sources...
2004 Sep 10
0
Re: detecting host machine in configure.in?
...libFLAC/Makefile.am 2001/05/23 20:58:29 1.6 +++ src/libFLAC/Makefile.am 2001/05/24 03:08:47 @@ -2,10 +2,6 @@ # GNU makefile # -SUFFIXES = .nasm -.nasm.o: - $(NASM) -f elf -d ELF -i i386/ $< -o $@ - lib_LTLIBRARIES = libFLAC.la if DEBUG CFLAGS += @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__OVERFLOW_DETECT @@ -15,40 +11,11 @@ if FLaC__CPU_IA32 if FLaC__HAS_NASM -libFLAC_la_SOURCES = \ - bitbuffer.c \ - bitmath.c \ - crc.c \ - cpu.c \ - encoder.c \ - encoder_framing.c \ - file_decoder.c \ - fixed.c \ - format.c \ - lpc.c \ - md5.c \ - seek_table.c \ - stream_decoder.c \ - i386/cpu_asm.nasm \ - i3...
2004 Sep 10
2
Re: detecting host machine in configure.in?
--- Christian Weisgerber <naddy@mips.inka.de> wrote: > Josh Coalson <xflac@yahoo.com> wrote: > > > Basically what I want is configure.in determination of > > basic machine type (intel/compatible, alpha, ppc), then within > > that (say intel) the code will detect variants like MMX, SSE, > > and use the right routines. > > Please include a way to
2004 Sep 10
3
AMD debugging test files available
On Fri, Aug 16, 2002 at 11:14:01AM -0700, Josh Coalson wrote: > --- Josh Coalson <xflac@yahoo.com> wrote: > >... > > If anyone with a similar set up can read the comments in the > > following bug reports and do some investigation it would really > > help a lot. I would like to hear about setups that are working > > as much as ones that aren't. >
2012 Dec 03
4
[PATCH 1/5] Remove old GNU-stack sections from nasm files.
They are not needed since the section is defined in nasm.h. --- src/libFLAC/ia32/bitreader_asm.nasm | 4 ---- src/libFLAC/ia32/cpu_asm.nasm | 4 ---- src/libFLAC/ia32/fixed_asm.nasm | 4 ---- src/libFLAC/ia32/lpc_asm.nasm | 4 ---- src/libFLAC/ia32/stream_encoder_asm.nasm | 4 ---- 5 files changed, 20 deletions(-) diff --git
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools based build system. There is a lot more that could and should be done, but I tried to stay conservative for now and just resolve some of the most obvious issues. Max Horn (5): configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN autogen.sh: replace this by a simple call to autoreconf configure: always print
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...eign - EXTRA_DIST = \ file_utils_flac.h \ metadata_utils.h diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index 13ab593..aa88100 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -34,6 +34,9 @@ noinst_LTLIBRARIES = libFLAC-static.la if DEBUG DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT endif + +# FIXME: The following logic should be part of configure, not of Makefile.am + if FLaC__CPU_PPC # The -force_cpusubtype_ALL is needed to insert a ppc64 instruction # into cpu.c with an asm(). diff --git a/src/plugin_common/Makefile.am b/src/plugin_common/Makefile.am index 0f557fd..2704...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...akefile.am @@ -28,6 +28,7 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include lib_LTLIBRARIES = libFLAC.la if DEBUG DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT @@ -77,7 +78,7 @@ endif endif endif -libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ +libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ -lm SUBDIRS = $(ARCH_SUBDIRS) include . @@ -104,7 +105,7 @@ extra_ogg_sources = \ ogg_mapping.c endif # see 'http://www.gnu.org/software/l...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...NOW -DFLAC__HAS_NASM -DFLAC__ALIGN_MALLOC_DATA else -DEFINES = -DFLAC__ALIGN_MALLOC_DATA + DEFINES = -DFLAC__ALIGN_MALLOC_DATA endif endif endif -INCLUDES = -I./include -I$(topdir)/include -I$(OGG_INCLUDE_DIR) +INCLUDES = -I./include -I$(topdir)/include $(OGG_INCLUDES) DEBUG_CFLAGS = -DFLAC__OVERFLOW_DETECT ifeq ($(OS),Darwin) @@ -65,6 +71,12 @@ SRCS_NASM = \ endif endif +OGG_SRCS_C = \ + ogg_decoder_aspect.c \ + ogg_encoder_aspect.c \ + ogg_helper.c \ + ogg_mapping.c + SRCS_C = \ bitmath.c \ bitreader.c \ @@ -79,14 +91,11 @@ SRCS_C = \ memory.c \ metadata...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...NOW -DFLAC__HAS_NASM -DFLAC__ALIGN_MALLOC_DATA else -DEFINES = -DFLAC__ALIGN_MALLOC_DATA + DEFINES = -DFLAC__ALIGN_MALLOC_DATA endif endif endif -INCLUDES = -I./include -I$(topdir)/include -I$(OGG_INCLUDE_DIR) +INCLUDES = -I./include -I$(topdir)/include $(OGG_INCLUDES) DEBUG_CFLAGS = -DFLAC__OVERFLOW_DETECT ifeq ($(OS),Darwin) @@ -65,6 +71,12 @@ SRCS_NASM = \ endif endif +OGG_SRCS_C = \ + ogg_decoder_aspect.c \ + ogg_encoder_aspect.c \ + ogg_helper.c \ + ogg_mapping.c + SRCS_C = \ bitmath.c \ bitreader.c \ @@ -79,14 +91,11 @@ SRCS_C = \ memory.c \ metadata...