search for: ogg_help

Displaying 6 results from an estimated 6 matches for "ogg_help".

Did you mean: ogghelp
2013 Mar 08
6
Can't cross-compile from git now.
...t git. With Ubuntu 12.04 and g++-mingw-w64-i686 (4.6.3-1ubuntu5+5ubuntu1). I think that the problem might have been introduced on 5 Mar 2013 with commit 05609d5 (configure.ac : Add hardening compile options.) Gives errors like this:- /home/user/FLAC_build/flac-05609d5/src/libFLAC/.libs/libFLAC.a(ogg_helper.o):ogg_helper.c:(.text+0x173): undefined reference to `___stack_chk_guard' /home/user/FLAC_build/flac-05609d5/src/libFLAC/.libs/libFLAC.a(ogg_helper.o):ogg_helper.c:(.text+0x45c): undefined reference to `___stack_chk_guard' /home/user/FLAC_build/flac-05609d5/src/libFLAC/.libs/libFLAC.a(og...
2012 Mar 09
1
Compiling the FLAC libraries without OGG
...braries without ogg using Microsoft Visual Studio. As suggested in the README file, I removed the FLAC__HAS_OGG preprocessor directive from the projects, but a number of the files include the ogg headers: 1>------ Build started: Project: libFLAC_dynamic, Configuration: Debug Win32 ------ 1> ogg_helper.c 1>c:\users\mischero\documents\visual studio 11\projects\flac-1.2.1\src\libflac\include\private\ogg_helper.h(35): fatal error C1083: Cannot open include file: 'ogg/ogg.h': No such file or directory 1> ogg_encoder_aspect.c 1>c:\users\mischero\documents\visual studio 11\projects\...
2009 Aug 05
2
FLAC 1.2.1 on OS X 10.4.11
....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_asm.o -lm / usr/local/lib/libogg.dylib -i...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...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.c \ - ogg_mapping.c \ stream_decoder....
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...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.c \ - ogg_mapping.c \ stream_decoder....
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...70..ce0c8da 100644 --- a/src/libFLAC/stream_encoder.c +++ b/src/libFLAC/stream_encoder.c @@ -60,6 +60,7 @@ #include "private/lpc.h" #include "private/md5.h" #include "private/memory.h" +#include "private/macros.h" #if FLAC__HAS_OGG #include "private/ogg_helper.h" #include "private/ogg_mapping.h" @@ -71,16 +72,6 @@ #define FLaC__INLINE #endif -#ifdef min -#undef min -#endif -#define min(x,y) ((x)<(y)?(x):(y)) - -#ifdef max -#undef max -#endif -#define max(x,y) ((x)>(y)?(x):(y)) - /* Exact Rice codeword length calculation is of...