Re: [Flac-dev] [Flac] Ogg Codecs 0.80.15035

2008-06-14 Thread Cristian Adam
Cristian Adam wrote: Hi all, I've made a test release for Ogg DirectShow Codecs. You can find it here: http://www.xiph.org/dshow/uploads/Main/oggcodecs_0.80.15035.exe The problem is that I get a HEAP Corruption detected at: void FLAC__bitreader_free(FLAC__BitReader *br) { FLAC__ASS

Re: [Flac-dev] FLAC support for Android?

2009-02-25 Thread Cristian Adam
On Wed, Feb 25, 2009 at 2:23 PM, Brian Willoughby wrote: > A better suggestion might be to start with libFLAC, optimize as > needed, and then submit the optimizations back to the FLAC project > where they will be more widely useful. > > But that's just my opinion. > > Brian Willoughby > Sound Cons

Re: [Flac-dev] flac source code?

2011-02-05 Thread Cristian Adam
On 05.02.2011 17:43, Sven-Hendrik Haase wrote: > Hi, since sourceforge cvs hosting is currently down and there is no > telling when it will return, I wondered if anybody could had a recent > backup/export of the repo? > ___ > Flac-dev mailing list > Flac-

Re: [flac-dev] 2GB limit patch

2013-03-04 Thread Cristian Adam
On 3/4/2013 11:26 PM, Martijn van Beurden wrote: > On 04-03-13 23:19, Erik de Castro Lopo wrote: >> Link please? > http://www.hydrogenaudio.org/forums/index.php?showtopic=99757 > >> Err, thats a link to a post talking about flac's WAV reader being limited >> to 4Gig files. Problem is, *all* WAV fil

Re: [flac-dev] Updated MSVC patch

2013-03-06 Thread Cristian Adam
Hi Ben, Can you please remove the _MSC_VER >= 1600 check? _MSC_VER 1600 is set for Visual Studio 2010, which means that Visual Studio 2012 will get a lot of errors because _MSC_VER is defined as 1700. Cheers, Cristian. On Wed, Mar 6, 2013 at 5:53 PM, Ben Allison wrote: > Thanks, Erik. > > Thi

Re: [flac-dev] Updated MSVC patch

2013-03-06 Thread Cristian Adam
Great. I need to correct my statement, the check for _MSC_VER <= 1600 was the culprit, like this case: #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__ #include /* for off_t */ #if _MSC_VER <= 1600 || defined __BORLANDC__ /* @@@ [2G limit] */ #ifndef fseeko #define fseeko fsee

Re: [flac-dev] FLAC__BYTES_PER_WORD==8 test results

2015-12-31 Thread Cristian Adam
On 31-Dec-15 09:00, Erik de Castro Lopo wrote: Brian Willoughby wrote: What's wrong with something incredible simple, like: #define FLAC__BYTES_PER_WORD (sizeof(int)) The fact that it actually is not correct. We want to determine the size in bits of the CPU registers. Here's what I know:

Re: [flac-dev] Playing FLAC Files on Audi MMI

2017-05-11 Thread Cristian Adam
On Wed, May 10, 2017 at 4:45 AM, elio manes wrote: > Hello, > > > I am hoping that perhaps you know the answer to my car audio question, or > can at least point me in the right direction. I own a 2013 Audi S4 that > has the 3G-Plus Multi Media Interface (MMI) with the Bang & Olufsen Sound > Syst

Re: [flac-dev] Enabling universal building of libFLAC

2022-09-18 Thread Cristian Adam
Hi, Building with CMake for both x86_64 and aarch64 for MacOS is as easy as setting the CMake configuration variable: "-DCMAKE_OSX_ARCHITECTURES=x86_64;arm64" when configuring the project. See How do I build cmake from source as universal(arm64 and x86_64) binary on Mac? - Usage - CMake Discourse