search for: vf_lib_curr

Displaying 4 results from an estimated 4 matches for "vf_lib_curr".

2005 Mar 11
0
Patch to fix Vorbis build buster
...======================================================= --- lib/Makefile.am (revision 9064) +++ lib/Makefile.am (working copy) @@ -19,7 +19,7 @@ libvorbis_la_LIBADD = @OGG_LIBS@ @VORBIS_LIBS@ libvorbisfile_la_SOURCES = vorbisfile.c -libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@ +libvorbisfile_la_LDFLAGS = -no-undefined -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@ @OGG_LIBS@ libvorbisfile_la_LIBADD = libvorbis.la libvorbisenc_la_SOURCES = vorbisenc.c
2000 Apr 21
5
BeOS diffs
HI, how do I get mods applied to Vorbis, I'm not a cvs guru and I don't know much about configure scripts. BeOS has this little quirk of being 99% POSIX compliant so these mods are required for vorbis to compile. To define int64_t in codec.h #ifdef __BEOS__ #include <inttypes.h> #endif run.c in vq needs 'changing' around line 141 becuase S_IFSOCK isn't
2000 Nov 10
1
cvs trunk vorbis/ compile patches
...e.am --- vorbis-trunk/lib/Makefile.am Wed Nov 8 19:53:45 2000 +++ vorbis/lib/Makefile.am Thu Nov 9 21:13:49 2000 @@ -20,9 +20,9 @@ libvorbisfile_la_SOURCES = vorbisfile.c -libvorbisfile_la_LIBADD = libvorbis.la +#libvorbisfile_la_LIBADD = libvorbis.la libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@ libvorbisenc_la_SOURCES = vorbisenc.c -libvorbisenc_la_LIBADD = libvorbis.la +#libvorbisenc_la_LIBADD = libvorbis.la libvorbisenc_la_LDFLAGS = -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@ diff -bBu2rN -x CVS -x Make*in -x aclocal.m4 vorbis-t...
2014 Sep 10
4
[RFC PATCH v1 0/3] Introducing ARM SIMD Support
libvorbis does not currently have any simd/vectorization. Following patches add generic framework for simd/vectorization and on top, add ARM-NEON simd vectorization using intrinsics. I was able to get over 34% performance improvement on my Beaglebone Black which is single Cortex-A8 based CPU. You can find more information on metrics and procedure I used to measure at