wavpackdll.lib - any static version? |
![]() ![]() |
wavpackdll.lib - any static version? |
Jul 16 2010, 11:03
Post
#1
|
|
|
Group: Members Posts: 11 Joined: 29-January 09 From: Starnberg - DE Member No.: 66373 |
Hi,
I've integrated wavpackdll.lib in my player-code. Works fine! But is there a static-lib-version...? Thanks a lot! Regards Thomas |
|
|
|
Jul 16 2010, 11:28
Post
#2
|
|
|
Group: Members Posts: 698 Joined: 6-March 10 Member No.: 78779 |
Static/dynamic refers to the linking layer, not the lib itself. Just link it statically.
|
|
|
|
Jul 16 2010, 11:51
Post
#3
|
|
|
Group: Members Posts: 11 Joined: 29-January 09 From: Starnberg - DE Member No.: 66373 |
|
|
|
|
Jul 17 2010, 19:04
Post
#4
|
|
![]() WavPack Developer Group: Developer (Donating) Posts: 1225 Joined: 3-January 02 From: San Francisco CA Member No.: 900 |
Sorry, I do not provide a statically linked version of the library.
I guess I figured that those only make sense for programs that don't have source code available, but anyone can easily create such a library for WavPack because the whole project is right there. Also, you are free to distribute the DLL with your program (and, BTW, thanks for adding WavPack support to it). If there's some issue that I am not thinking of, please let me know. David |
|
|
|
Jul 21 2010, 11:10
Post
#5
|
|
|
Group: Members Posts: 11 Joined: 29-January 09 From: Starnberg - DE Member No.: 66373 |
Sorry, I do not provide a statically linked version of the library. I guess I figured that those only make sense for programs that don't have source code available, but anyone can easily create such a library for WavPack because the whole project is right there. Also, you are free to distribute the DLL with your program (and, BTW, thanks for adding WavPack support to it). If there's some issue that I am not thinking of, please let me know. David Hi David, I had time today and compiled a working static "libwavpack.lib". If you like, I could send it. But another question, because i would like to know exactly what happens after *.wv is loaded (and I am still not so familiar with lossless compressed files): Am I right, that the moment music begins playing, the whole file is uncompressed, like a "normal" *.wav? My player "normally" loads the entire *.wav to memory and I see that the moment the *.wv is loaded, memory tooks exactly the same size ... Thanks! Regards Thomas |
|
|
|
Jul 22 2010, 04:24
Post
#6
|
|
![]() WavPack Developer Group: Developer (Donating) Posts: 1225 Joined: 3-January 02 From: San Francisco CA Member No.: 900 |
Hi Thomas,
Well, I assume that by "loaded" you mean opened with WavpackOpenFileInput(). In this case, no, none of the file is decoded. The decoding only happens when you call WavpackUnpackSamples(), and then it only decodes the samples you ask for. If you seek to another location the same thing happens and the decoding starts at the new location (except that decoding must start on a WavPack block and so a few extra fractions of a second might be decoded prior to the samples you ask for). Thanks for the offer of the static library, but as long as I know how to make one myself if I need it, then I'll be happy. I have not tried it, but I assume it was pretty easy in Visual Studio? Regards, David |
|
|
|
Jul 22 2010, 08:29
Post
#7
|
|
|
Group: Members Posts: 11 Joined: 29-January 09 From: Starnberg - DE Member No.: 66373 |
Hi David,
thank you! Pretty easy: I opened src\libwavpack.vcproj in MSVC and did this (I see it in german language, may be there are other expressions in engl.): For libwavpack (attributes): - Activ(Debug): C/C++ -> Codegeneration -> Multithreaded-Debug(MTd) - Release: the same (...) - Release: Common -> use MFC in a static b. Regards Thomas |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 19th June 2013 - 12:53 |