search for: _static

Displaying 19 results from an estimated 19 matches for "_static".

Did you mean: static
2004 Sep 17
1
linking against the static libraries
We would like to use the static libraries in our commercial software. This software is an MFC application which is statically linked to the MFC libraries. We added LibFLAC_static.lib and LibFLAC++_static.lib but this causes an error when trying to run our application ('A required file was missing MSVCRTXX.DLL'). After looking in the Project Settings of the FLAC source, I found that the 'Runtime Library' setting was set to: "Multi-threaded DLL(/MD)&quot...
2013 Sep 04
1
PATCH: win_utf8_io -> win_utf8_io_static
All MSVC projects that generate .lib files have '_static' suffix in their names; all but win_utf8_io. This patch renames it so that it follows this naming convention. -------------- next part -------------- A non-text attachment was scrubbed... Name: win_utf8_static.patch Type: application/octet-stream Size: 9097 bytes Desc: not available Url : http:...
2014 Jan 07
2
Windows linking problems
Hey everyone, I've come to appeal to the FLAC gods again. I have a plug-in for Adobe Premiere that adds support for Ogg Vorbis, Opus, and hopefully FLAC. But I can't get FLAC to link on Windows for some reason. I had to add x64 targets to the .vcproj files that ship with FLAC, so perhaps something went wrong there. Then I tried making new projects from scratch and importing the FLAC
2015 Aug 31
1
[PATCH] MSVC project dependencies
For some reasons libFLAC_dynamic, libFLAC++_dynamic and libFLAC++_static projects depend on win_utf8_io_static project, but there's no such dependency for libFLAC_static project. The patch adds such dependency. -------------- next part -------------- A non-text attachment was scrubbed... Name: win_utf8_dependency.patch Type: application/octet-stream Size: 1484 byte...
2004 Jan 06
0
AW: access violation in ov_open
hmmm...when using my self-compiled *_static lib's all works fine. (the shipped *_static lib's conflict with my libcmt.lib because of multiple definitions of some functions) only the dynamic libs cause an access-violation in NTDLL greetings, Sebastian ---------- <p><p>Hi! my code causes access-violations in ov_open. I&...
2013 Sep 01
1
New routine: FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_16
...in fact they don't support it. Only --restrict is supported. > * libFLAC and FLAC__ALIGN_MALLOC_DATA : Looks sane but doesn't apply. > * MSVC and M_LN2 : Looks sane but doesn't apply. It is also possible to add /D "_USE_MATH_DEFINES" as an additional option to libFLAC_static.vcproj and libFLAC_dynamic.vcproj. Don't know what is better. What do you think? > * bitmath.h: 1 typo, 1 warning : I don't see why the type has to change. Declarations from MSDN: unsigned char _BitScanReverse(unsigned long * Index, unsigned long Mask); unsigned char _BitS...
2003 Jun 16
2
using win32 static libs
...t-wizzard that comes with vs.net2003 using the default settings. here the code: ---------------------------------------------------------------------- #include "StdAfx.h" #include ".\ogg2wav.h" #include "oggvorbis\vorbisenc.h" #pragma comment(lib,"oggvorbis\\ogg_static.lib") #pragma comment(lib,"oggvorbis\\vorbis_static.lib") #pragma comment(lib,"oggvorbis\\vorbisenc_static.lib") void COgg2Wav::Convert(CString strWavPath, CString strOggPath) { vorbis_info vi; vorbis_info_init(&vi); // here comes *the* co...
2013 Aug 31
2
New routine: FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_16
Erik de Castro Lopo <mle+la at mega-nerd.com> wrote: > Patch applied, tested, commited and pushed. Great. But, what about my other patches? I admit that many of them aren't necessary, but (imho) a couple of them are important. I can explain in detail why I think this.
2014 Jan 07
0
Windows linking problems
Brendan Bolles wrote: > If someone would be so kind as to take a look, I have a branch set up, ready to show you the problem (after you download the Premiere SDK). I've posted this as a GitHub issue here: > It looks like the linker cannot find libFLAC_static.lib and libFLAC++_static.lib. By default FLAC moves them to objs/release/lib/ (or objs/debug/lib/) folder.
2014 Jan 07
2
Windows linking problems
On Jan 7, 2014, at 3:12 AM, lvqcl wrote: > It looks like the linker cannot find libFLAC_static.lib and libFLAC++_static.lib. > By default FLAC moves them to objs/release/lib/ (or objs/debug/lib/) folder. Unfortunately, I don't think that's it. Visual Studio gives me a specific error when it can't find a certain library file. I think these are the errors you get when a libr...
2016 Jan 16
0
MSVC, win_utf8_io, static and dynamic libs
Currently MSVS can build dynamic libraries (libFLAC_dynamic.dll, libFLAC++_dynamic.dll), static libraries (libFLAC_static.lib, libFLAC++_static.lib) and executables (flac.exe, metaflac.exe, etc). All executables are statically linked to libFLAC. It's possible to create a flac.exe that is linked to thr libFLAC DLL file, but it requires manual editing of various projects in the FLAC solution. is this configuration...
2002 Feb 07
1
Vorbisfile Linker Question
...vorbisfile to link into my project under Windows. I downloaded all the source, and after re-compiling all the dlls and libs with my project's proper settings (Multithreaded, 1-byte alignment), everything works peachy when I use the dlls from the *_dynamic project files. When I try to use the *_static .libs though I get the following linker error: Linking... MSVCRTD.lib(MSVCRTD.dll) : error LNK2005: _malloc already defined in libcmtd.lib(dbgheap.obj) MSVCRTD.lib(MSVCRTD.dll) : error LNK2005: _free already defined in libcmtd.lib(dbgheap.obj) MSVCRTD.lib(MSVCRTD.dll) : error LNK2005: _memmove alr...
2001 Jun 11
1
Anyone with an extended vorbisfile_example?
Hello Vorbis-dev! I just found out about this absolutely great format. I downloaded the SDK and successfully compiled vorbisfile_example.c with MSVC6.0 - seems to be working fine. My next step will be to modify it as follows: 1) Write proper Windows pcm .wav files (with complete header). Shouldn't be too much of a problem. 2) Package it as a single .dll (instead of as I have now: 1 .exe and 3
2002 Aug 06
0
Getting a GUI to work with Vorbis code
...bis.lib Low-level Vorbis decoding library Vorbisenc.lib Low-level Vorbis encoding library Vorbisfile.lib High-level Vorbis file reading library The static versions of the libraries can be used instead of the dll's. This is achieved by adding _static to the name of the library file. The debug versions have a _d appended to their name. To add the libraries to the project:Select Project->Settings. Click the Link tab. Under the Object/library modules section append ogg_d.lib, vorbis_d.lib and vorbisfile_d.lib to the end of t...
2000 Nov 12
2
This is not going well... but better than before!
Ok... This is begining to go a bit better.... I have compiled 4 lib's and placed them in my lib path. ogg.lib vorbis.lib vorbisenc.lib vorbisfile.lib When I try and compile oggenc.c I still have link errors.. unresolved external symbol _vorbis_comment_clear unresolved external symbol _optind unresolved external symbol _optarg unresolved external symbol _vorbis_comment_add_tag
2020 Jul 15
3
How to get information about data dependencies?
Stefanos Baziotis via llvm-dev <llvm-dev at lists.llvm.org> writes: > Well... I tried that and it doesn't seem to be very useful > unfortunately. The C/C++ way that arrays are defined is probably why > DA is not that useful. Namely that a row can alias with another row in > 2D arrays. The theory behind DA is quite powerful if we knew that they > don't alias. Right
2004 Sep 27
3
Size of Windows ogg.dll and vorbis.dll
Hello, On the Windows platform, I would like to compile a version of the codec files ogg.dll, vorbis.dll, and vorbisfile.dll that are small. I notice that the provided Windows projects are very large...the release Vorbis.dll is > 1 mb. To me, that is huge. I am only using decoding features. I looked in the Zinf project, and they seem to have a version with the encoding functions
2002 Jun 26
1
Getting started with vorbisfile_example.c (MS VC 6)
Hello Hope you don't mind another newbie's question. Further to GIE's email about problems compiling decoder_example.c example (MS VC 7) using debug static ogg/vorbis libs, we'd appreciate any help getting the example files to compile on MS VC 6. The zip files we have downloaded are: libao-0.8.2.zip libogg-1.0rc3.zip libvorbis-1.0rc3.zip vorbis-sdk-1.0rc3.zip
2007 Mar 06
1
Errors compiling flac in Visual Studio Express 2005
...flac library using Microsofts free (yes MS gives it away including the optimizing C++ compiler msvc8.0) Visual Studio Express 2005. I get the output shown below. Does anyone have a way to make flac compile in VS 2005? Thanks! Ulrik 1>------ Rebuild All started: Project: replaygain_analysis_static, Configuration: Debug Win32 ------ 1>Deleting intermediate and output files for project 'replaygain_analysis_static', configuration 'Debug|Win32' 2>------ Rebuild All started: Project: replaygain_synthesis_static, Configuration: Debug Win32 ------ 2>Deleting intermediate...