Displaying 6 results from an estimated 6 matches for "ogg_encoder_aspect".
Did you mean:
ogg_decoder_aspect
2012 Mar 09
1
Compiling the FLAC libraries without OGG
...ted: 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\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\pro...
2006 Nov 06
1
[PATCH] Re: Strangeness with OggFlac files
...the e_o_s flag (and has always done so, according to svn)
so you shouldn't have to call ogg_stream_flush() except when you want to
force a page boundary (such as after the header packets).
ogg/src/framing.c line 449
One common mistake it to not loop on ogg_stream_pageout() but it looks
like ogg_encoder_aspect.c is doing that.
-r
2006 Nov 06
3
[PATCH] Re: Strangeness with OggFlac files
--- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote:
> Erik de Castro Lopo wrote:
>
> > Josh et al,
> >
> > I've been tracking down a problem with generating OggFlac files.
>
> <snip>
>
> > I have looked into this and suspect that the
> FLAC__stream_encoder_finish()
> > function needs to finish off the stream using a call to
2009 Aug 05
2
FLAC 1.2.1 on OS X 10.4.11
...riter.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_asm.o -lm /
usr/local/l...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...dif
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.c \
- ogg_mapping.c \...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...dif
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.c \
- ogg_mapping.c \...