Re: [flac-dev] [PATCH 4/4] Robustify autogen.sh

2013-02-08 Thread Erik de Castro Lopo
Thanks Timothy, All 4 patches applied. Cheers, Erik -- -- Erik de Castro Lopo http://www.mega-nerd.com/ ___ flac-dev mailing list flac-dev@xiph.org http://lists.xiph.org/mailman/listin

Re: [flac-dev] Commonly getting FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA on valid audio

2013-02-08 Thread Erik de Castro Lopo
Collin wrote: > Has anyone encountered a similar problem, or are there any known issues that > could explain this? No known issues of this kind, but I would like to see a repeatable test case so I can investigate further. Cheers, Erik -- -

Re: [flac-dev] Commonly getting FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA on valid audio

2013-02-08 Thread Martijn van Beurden
On 07-02-13 23:07, Collin wrote: > I'm using libflac on Windows to compress some audio samples. I'm building the > library locally, using Visual Studio 2010. Each set of data is 2-5 MB and well > formed PCM encoded data. I'm finding some very odd behavior. One of the main strengths of FLAC is that

[flac-dev] Beginner's question

2013-02-08 Thread Johnny Rosenberg
I have just found out about the libflac thing and I have searched a bit for information about it. I found its API and two examples. My operating system is Ubuntu 12.04 and I installed the libflac-dev thing from the software center (which is equal to installing it with ”sudo apt-get install libflac-

Re: [flac-dev] Beginner's question

2013-02-08 Thread Ralph Giles
On 13-02-08 11:31 AM, Johnny Rosenberg wrote: > I'm not very familiar with creating projects with dedicated IDEs, so > far I only use a simple text editor and I want to keep it that way for > a while, if possible. If you've installed libflac-dev you should be able to compile the example code agai

Re: [flac-dev] Commonly getting FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA on valid audio

2013-02-08 Thread Ben Allison
Are you calling FLAC__stream_encoder_finish(encoder); before you call FLAC__stream_encoder_delete(encoder); That would cause this issue. -Ben Allison > I'm using libflac on Windows to compress some audio samples. I'm building > the > library locally, using Visual Studio 2010. Each set of data is

Re: [flac-dev] Commonly getting FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA on valid audio

2013-02-08 Thread Collin
Erik de Castro Lopo mega-nerd.com> writes: > > Collin wrote: > > > Has anyone encountered a similar problem, or are there any known issues that > > could explain this? > > No known issues of this kind, but I would like to see a repeatable test > case so I can investigate further. > > Cheers,

Re: [flac-dev] Commonly getting FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA on valid audio

2013-02-08 Thread Erik de Castro Lopo
Collin wrote: > It turns out it was an error on my part; sorry for the trouble. I > misunderstood > the format libflac was expecting my samples in. I found the wording in the > documentation very confusing. > > My audio file has 2 channels and 16-bit samples, so I have to pull out each > individ