search for: ogg_decoder_aspect

Displaying 9 results from an estimated 9 matches for "ogg_decoder_aspect".

2007 Oct 17
1
Fwd: Re: FLAC for "ARM little endian for glibc"
...t/crosstool/gcc-3.4.1-glibc-2.2.5/armv5b-softfloat-linux/bin/armv5b-softfloat-linux-gcc -DHAVE_CONFIG_H -I. -I. -I../.. -Ino/include -I../.. -I./include -I../../include -O2 -DNDEBUG -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__ -g -O2 -MT ogg_decoder_aspect.lo -MD -MP -MF ".deps/ogg_decoder_aspect.Tpo" -c -o ogg_decoder_aspect.lo ogg_decoder_aspect.c; \ then mv -f ".deps/ogg_decoder_aspect.Tpo" ".deps/ogg_decoder_aspect.Plo"; else rm -f ".deps/ogg_decoder_aspect.Tpo"; exit 1; fi /opt/crosstool/gcc-3.4.1-glibc-...
2013 May 15
0
FLAC currently won't compile for Android [bisected]
...[-Wnested-externs] stream_encoder.c: In function 'FLAC__stream_encoder_process': stream_encoder.c:1957:3: warning: implicit declaration of function 'MIN' [-Wimplicit-function-declaration] stream_encoder.c:1957:3: warning: nested extern declaration of 'MIN' [-Wnested-externs] ogg_decoder_aspect.c: In function 'FLAC__ogg_decoder_aspect_read_callback_wrapper': ogg_decoder_aspect.c:210:5: warning: implicit declaration of function 'MAX' [-Wimplicit-function-declaration] ogg_decoder_aspect.c:210:5: warning: nested extern declaration of 'MAX' [-Wnested-externs] decode.c:...
2013 May 15
2
FLAC currently won't compile for Android [bisected]
2013/5/15 Ulrich Klauer <ulrich at chirlu.de> > Felix Homann wrote: > > > Yes, HAVE_SYS_PARAM_H is set in config.h: > > OK ... Yet still I don't see how a change in > src/libFLAC/include/private/macros.h could affect src/flac/utils.c in > any way. > > Anyone got an idea? I haven't spend too much attention to the errors when bisecting, sorry! The
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...src/libFLAC/bitwriter.c | 8 ++---- src/libFLAC/fixed.c | 18 +++++-------- src/libFLAC/format.c | 8 ++---- src/libFLAC/include/private/macros.h | 29 ++++++++++++++++++++ src/libFLAC/metadata_iterators.c | 17 +++--------- src/libFLAC/ogg_decoder_aspect.c | 7 ++--- src/libFLAC/stream_decoder.c | 8 ++---- src/libFLAC/stream_encoder.c | 49 ++++++++++++++-------------------- src/libFLAC/stream_encoder_framing.c | 5 ---- 11 files changed, 77 insertions(+), 91 deletions(-) create mode 100644 src/libFLAC/include/priva...
2012 Mar 09
1
Compiling the FLAC libraries without OGG
...: 'ogg/ogg.h': No such file or directory 1> ogg_encoder_aspect.c 1>c:\users\mischero\documents\visual studio 11\projects\flac-1.2.1\src\libflac\include\private\ogg_encoder_aspect.h(35): fatal error C1083: Cannot open include file: 'ogg/ogg.h': No such file or directory 1> ogg_decoder_aspect.c 1>c:\users\mischero\documents\visual studio 11\projects\flac-1.2.1\src\libflac\include\private\ogg_decoder_aspect.h(35): fatal error C1083: Cannot open include file: 'ogg/ogg.h': No such file or directory Any suggestions here? Thanks, Michael Michael S. Scherotter Microsoft Corporati...
2009 Aug 05
2
FLAC 1.2.1 on OS X 10.4.11
...bs/bitreader.o .libs/ bitwriter.o .libs/cpu.o .libs/crc.o .libs/fixed.o .libs/float.o .libs/ format.o .libs/lpc.o .libs/md5.o .libs/memory.o .libs/ metadata_iterators.o .libs/metadata_object.o .libs/ stream_decoder.o .libs/stream_encoder.o .libs/ stream_encoder_framing.o .libs/window.o .libs/ ogg_decoder_aspect.o .libs/ogg_encoder_aspect.o .libs/ ogg_helper.o .libs/ogg_mapping.o .libs/libFLAC.lax/libFLAC-asm.a/ bitreader_asm.o .libs/libFLAC.lax/libFLAC-asm.a/cpu_asm.o .libs/ libFLAC.lax/libFLAC-asm.a/fixed_asm.o .libs/libFLAC.lax/libFLAC-asm.a/ lpc_asm.o .libs/libFLAC.lax/libFLAC-asm.a/stream_encoder...
2012 Mar 29
4
[GIT PULL] Assorted bugfixes and improvements (from openSUSE)
...FLAC/bitreader.c | 13 +- src/libFLAC/bitwriter.c | 11 +- src/libFLAC/fixed.c | 16 +- src/libFLAC/lpc.c | 16 +- src/libFLAC/metadata_iterators.c | 15 +- src/libFLAC/ogg_decoder_aspect.c | 7 +- src/libFLAC/stream_decoder.c | 7 +- src/libFLAC/stream_encoder.c | 48 +- src/libFLAC/stream_encoder_framing.c | 5 - src/metaflac/Makefile.am | 2 +- src/plugin_common/Makefile.am...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...IGN_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_iterators.c \ metadata_object.c \ - ogg_decoder_aspect.c \ - ogg_encoder_aspect.c \ - ogg_helper....
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...IGN_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_iterators.c \ metadata_object.c \ - ogg_decoder_aspect.c \ - ogg_encoder_aspect.c \ - ogg_helper....