Displaying 11 results from an estimated 11 matches for "2bla".
2010 Jan 05
3
FLAC C API / Visual Studio 2008 FILE* Issue
...hes. When I use
the build-in implementation, it just crashes without any reason. It's not a
problem to stick with my own callbacks for reading, but fixing this issue
(if it's not just me) would be nice.
On Wed, Jan 6, 2010 at 12:38 AM, Erik de Castro Lopo
<mle+la at mega-nerd.com<mle%2Bla at mega-nerd.com>
> wrote:
> Ivailo Karamanolev wrote:
>
> > I am currently learning the FLAC C API and had the code working with
> > FLAC__stream_decoder_init_file. However, since I'd need the Unicode
> filename
> > support, I tried _wfopen_s in combination wi...
2010 Jan 06
4
FLAC C API / Visual Studio 2008 FILE* Issue
...without any reason. It's not
> > a
> > problem to stick with my own callbacks for reading, but fixing this issue
> > (if it's not just me) would be nice.
> >
> > On Wed, Jan 6, 2010 at 12:38 AM, Erik de Castro Lopo
> > <mle+la at mega-nerd.com <mle%2Bla at mega-nerd.com><mle%2Bla at mega-nerd.com<mle%252Bla at mega-nerd.com>
> >
> >> wrote:
> >
> >> Ivailo Karamanolev wrote:
> >>
> >> > I am currently learning the FLAC C API and had the code working with
> >> > FLAC__stream...
2008 Nov 03
0
No subject
...es without any reason. =
It's not
> a
> problem to stick with my own callbacks for reading, but fixing =
this issue
> (if it's not just me) would be nice.
>
> On Wed, Jan 6, 2010 at 12:38 AM, Erik de Castro Lopo
> <mle+la at mega-nerd.com<mle%2Bla at mega-nerd.com>
>> wrote:
>
>> Ivailo Karamanolev wrote:
>>
>> > I am currently learning the FLAC C API and had the code working =
with
>> > FLAC__stream_decoder_init_file. However, since I'd need the =
Unicode
>> fi...
2008 Oct 02
1
VS2005 build stability?
On Thu, Oct 2, 2008 at 12:30 AM, Erik de Castro Lopo
<mle+la at mega-nerd.com<mle%2Bla at mega-nerd.com>
> wrote:
> Keith Kyzivat wrote:
>
> > And Alex has told me that visual studio-built projects cannot link with
> > mingw-win32-gcc produced DLLs...
>
> This is only true when the DLL being called exports C++ name mangled
> symbols.
Is there a way...
2009 Oct 22
2
Cross-compiling speex
Jean-Marc Valin wrote:
> Actually, I'm not sure how to do it, but I think the most useful would
> be a patch that still allows you to re-run autoconf/automake even
> without having libogg present. Right now, if you don't have libogg, you
> can't cleanly build from git.
I'll take a look over the weekend.
Erik
--
2012 Apr 04
2
FLAC example compilation
Rafael Velasquez wrote:
> I have installed libflac via synaptic, the version is 1.2.1-3.
If you want to compile some other code against libflac, you also need
to install libflac-dev.
However, the code you posted a link to does not compile on it's own,
it requires other code in the source code tarball.
Erik
--
----------------------------------------------------------------------
Erik
2012 Apr 04
2
FLAC example compilation
...saying "FLAC full source code and Nightly CVS tarball".
Op 04-04-12 14:30, Rafael Velasquez schreef:
> I have also installe libflac-dev.
> so, could you send me the good link please ?
>
>
>
> 2012/4/4 Erik de Castro Lopo <mle+la at mega-nerd.com
> <mailto:mle%2Bla at mega-nerd.com>>
>
> Rafael Velasquez wrote:
>
> > I have installed libflac via synaptic, the version is 1.2.1-3.
>
> If you want to compile some other code against libflac, you also need
> to install libflac-dev.
>
> However, the code you p...
2010 Jan 05
0
FLAC C API / Visual Studio 2008 FILE* Issue
...implementation, it just crashes without any reason. It's not
> a
> problem to stick with my own callbacks for reading, but fixing this issue
> (if it's not just me) would be nice.
>
> On Wed, Jan 6, 2010 at 12:38 AM, Erik de Castro Lopo
> <mle+la at mega-nerd.com<mle%2Bla at mega-nerd.com>
>> wrote:
>
>> Ivailo Karamanolev wrote:
>>
>> > I am currently learning the FLAC C API and had the code working with
>> > FLAC__stream_decoder_init_file. However, since I'd need the Unicode
>> filename
>> > support, I t...
2010 Jan 05
2
FLAC C API / Visual Studio 2008 FILE* Issue
Hello,
I am currently learning the FLAC C API and had the code working with
FLAC__stream_decoder_init_file. However, since I'd need the Unicode filename
support, I tried _wfopen_s in combination with
FLAC__stream_decoder_init_FILE, however I get a runtime crash as sonn as I
call FLAC__stream_decoder_process_until_end_of_stream. The same code
(partially taken from the examples) is working
2008 Aug 13
4
MinGW Patch
Hello, I was trying to compile Flac on MinGW/Msys but got an error stating
SIZE_T_MAX is undefined.
To fix this error I edited the file "flac-1.2.1/include/share/alloc.h" and
made the following change:
Starting at line #36 I changed:
#ifndef SIZE_MAX
# ifndef SIZE_T_MAX
# ifdef _MSC_VER
# define SIZE_T_MAX UINT_MAX
# else
# error
# endif
# endif
# define SIZE_MAX SIZE_T_MAX
2008 Oct 02
3
VS2005 build stability?
On Thu, Oct 2, 2008 at 12:07 AM, Jean-Marc Valin <
jean-marc.valin at usherbrooke.ca> wrote:
> Tom Grandgent a ?crit :
> > If you remove the project files, I doubt it's going to make things easier
> > for anyone. You'll probably just increase the number of questions as
> > people struggle to compile using less common and less user-friendly
> > methods,