similar to: Windows linking problems

Displaying 20 results from an estimated 2000 matches similar to: "Windows linking problems"

2013 Jul 01
2
FLAC plug-in for Adobe Premiere
Hey everyone, I've written a FLAC plug-ing for Adobe Premiere. It's actually part of the Ogg Vorbis plug-in I originally set out to write. You can see it here on GitHub: https://github.com/fnordware/AdobeOgg I just finished the first beta a few hours ago. You can download binary plug-ins from here: http://www.fnordware.com/downloads/Ogg_v0.5b1_mac.zip
2013 Jul 01
0
FLAC plug-in for Adobe Premiere
Hey everyone, I've written a FLAC plug-ing for Adobe Premiere. It's actually part of the Ogg Vorbis plug-in I originally set out to write. You can see it here on GitHub: https://github.com/fnordware/AdobeOgg I just finished the first beta a few hours ago. You can download binary plug-ins from here: http://www.fnordware.com/downloads/Ogg_v0.5b1_mac.zip
2013 Jul 01
0
FLAC plug-in for Adobe Premiere
On 01-07-13 16:11, Brendan Bolles wrote: > Hey everyone, I've written a FLAC plug-ing for Adobe Premiere. It's actually part of the Ogg Vorbis plug-in I originally set out to write. You can see it here on GitHub: > > https://github.com/fnordware/AdobeOgg Hi Brendan, Nice work! I'm not an Adobe Premiere user, but for what I know it has quite a lot of users so I'm
2014 Jan 06
2
Meaning of mapping[]
Hey everyone, I've added Ogg Opus support to my Adobe Premiere plug-in here: http://github.com/fnordware/AdobeOgg Now I'll add Opus support to me WebM plug-in too. I've got this Opus stuff mostly figured out, but I have a few questions. Here's one: What do the numbers in mapping mean? I see that opus.h refers to the Vorbis channel mapping order, so does mapping in Opus take
2013 Jul 01
0
Ogg Vorbis plug-in for Adobe Premiere
Hey everyone, I've written an Ogg Vorbis plug-in for Adobe Premiere. You can see it here on GitHub: https://github.com/fnordware/AdobeOgg I just finished the first beta a few hours ago. You can download binary plug-ins from here: http://www.fnordware.com/downloads/Ogg_v0.5b1_mac.zip http://www.fnordware.com/downloads/Ogg_v0.5b1_win.zip If you don't have Premiere, you can always
2013 Jul 01
0
Ogg Vorbis plug-in for Adobe Premiere
Hey everyone, I've written an Ogg Vorbis plug-in for Adobe Premiere. You can see it here on GitHub: https://github.com/fnordware/AdobeOgg I just finished the first beta a few hours ago. You can download binary plug-ins from here: http://www.fnordware.com/downloads/Ogg_v0.5b1_mac.zip http://www.fnordware.com/downloads/Ogg_v0.5b1_win.zip If you don't have Premiere, you can always
2014 Jan 07
2
Opus in WebM
What got me experimenting with Opus is that I heard it's going to be a supported codec in WebM, which I also have a Premiere plug-in for: http://github.com/fnordware/AdobeWebM I just posted a new beta that includes Opus support. Naturally, I *think* I'm doing it right, but I'd love for someone more knowledgeable about Opus or WebM to take a look. The closest thing to a standards
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
2014 Jan 06
0
Meaning of mapping[]
On 2014-01-06 10:24 AM, Brendan Bolles wrote: > http://github.com/fnordware/AdobeOgg Cool! > What do the numbers in mapping mean? These numbers tell you how to map the decoded opus channels to particular speakers. > For example, opus_multistream_surround_encoder_create() sends out mapping[] = {0, 4, 1, 2, 3, 5}. > For 6 channels the Vorbis order is front left, center, front right,
2013 Sep 01
1
New routine: FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_16
Erik de Castro Lopo <mle+la at mega-nerd.com> wrote: > Well first of all, none of them apply :-). I'll try to redo the necessary patches with git. > * Remove restrict definition from include/share/compat.h. Applied. BTW, I tried to use 'restrict' keyword with MSVS 2010 and 2012 and in fact they don't support it. Only --restrict is supported. > * libFLAC and
2013 Sep 13
1
Seeking in WebM
Hi everyone, I'm working on a WebM plug-in for Premiere. You probably already know that WebM is a Matroska container that uses Vorbis for audio compression. I'm pretty new to the world of audio compression and need some help. You can see my code here: http://github.com/fnordware/AdobeWebM First of all, I wonder if it's possible to seek to an exact audio sample in WebM. Whereas
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 17
4
Opus in WebM
Yes, it's basically an intrinsic aspect of the mathematics. If you seek into the middle of an Opus stream, that's about how long it takes before the audio converges to be correct. On Jan 17, 2014 2:13 PM, "Brendan Bolles" <brendan at fnordware.com> wrote: > On Jan 7, 2014, at 11:11 AM, Brendan Bolles wrote: > > > The closest thing to a standards document for
2019 Jul 14
1
Prelease now available
Janne Hyvärinen wrote: > Minor changes needed for Visual Studio as the version is defined in the > project files. > > Replace 'PACKAGE_VERSION=\&quot;1.3.2\&quot' with > 'PACKAGE_VERSION=\&quot;1.3.3rc1\&quot' in > src/libFLAC/libFLAC_dynamic.vcproj and libFLAC_static.vcproj. And > replace 'PACKAGE_VERSION="1.3.2"' with
2014 Jan 07
1
Meaning of mapping[]
On 06/01/14 06:21 PM, Ralph Giles wrote: > It's written from the point of view of the decoder, so it seems > backwards if you're thinking about encoding. It may help to think of it > as opus_multistream_surround_encouder_create() returning what you have > to pass to the decoder to understand the stream configuration. Not only that, but it's designed so that the same signal
2013 Mar 11
2
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote: > Here's a patch that fixes the creation of larger than 2 GB FLAC files. > Without this patch both GCC and MSVC compiles of FLAC will fail on > Windows when they have written 2 GB file while encoding from stdin. And > after 4GB when encoding from WAV file. Ok. > It includes Ben Allison's MSVC changes and JonY's MinGW changes with > some
2013 Sep 04
1
PATCH: FLAC__ALIGN_MALLOC_DATA definition for MSVS projects
A preprocessor macro FLAC__ALIGN_MALLOC_DATA is defined in Makefiles but absent in *.vcproj files. This patch adds it to libFLAC_static.vcproj and libFLAC_dynamic.vcproj. -------------- next part -------------- A non-text attachment was scrubbed... Name: align_malloc.patch Type: application/octet-stream Size: 2862 bytes Desc: not available Url :
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 bytes Desc: not available Url :
2013 Oct 03
1
PATCH: modify/add intrinsics code
lvqcl wrote: > lvqcl wrote: > > > The patch does the following: > > Does the patch work for linux git? Windows git cannot apply a patch > that was created itself. It looks like that patch was created with the 'git diff' command and hence cannot be applied using the 'git am' command. It does however apply using the patch command. > (It writes LF in
2019 Jul 14
8
Prelease now available
Hi all, I have a new pre-reelase (with a GPG signature) up here: http://mega-nerd.com/tmp/flac-1.3.3rc1.tar.xz http://mega-nerd.com/tmp/flac-1.3.3rc1.tar.xz.asc This code is built from commit 10a28d482a8e48b806f61ab766992b2add98ec43 plus another commmit to change the version numbers which I will not be pushing to the public repo before the final release. Note that audio files encoded