Displaying 10 results from an estimated 10 matches for "ivailo91".
Did you mean:
ivailo
2011 Feb 23
2
flac source code??
Hi everyone. Is it possible for me to get the source code for the flac
program? especially the .c file. I got confused when I downloaded the file
at the web, and only got the .h file. It's is really confused me. Or maybe
can anybody tell me about the algorithm that is used? Sorry if it bothering
all of you, because I still newbie in audio compression.
Fyi, I want to use flac algorithm for my
2010 Jul 29
0
Flac-dev Digest, Vol 70, Issue 5
...rt --------------
> An HTML attachment was scrubbed...
> URL:
> http://lists.xiph.org/pipermail/flac-dev/attachments/20100728/9f90e23e/attachment.html
>
> ------------------------------
>
> Message: 2
> Date: Wed, 28 Jul 2010 16:57:56 +0300
> From: Ivailo Karamanolev <ivailo91 at gmail.com>
> Subject: Re: [Flac-dev] Track Markers?
> To: flac-dev at xiph.org
> Message-ID:
> <AANLkTin8meomKrK6HkCDpmGTee=vE=XH7gdMWfJLqKX7 at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi Neil,
>
> What exactly are you pl...
2010 Jul 29
1
Flac-dev Digest, Vol 70, Issue 5
...;> >
>> http://lists.xiph.org/pipermail/flac-dev/attachments/20100728/9f90e23e/attachment.html
>> >
>> > ------------------------------
>> >
>> > Message: 2
>> > Date: Wed, 28 Jul 2010 16:57:56 +0300
>> > From: Ivailo Karamanolev <ivailo91 at gmail.com>
>> > Subject: Re: [Flac-dev] Track Markers?
>> > To: flac-dev at xiph.org
>> > Message-ID:
>> > <AANLkTin8meomKrK6HkCDpmGTee=vE=XH7gdMWfJLqKX7 at mail.gmail.com>
>> > Content-Type: text/plain; charset="iso-8859-1"
>>...
2012 Oct 06
4
Questions about FLAC documentation
I'm implementing a FLAC decoder from scratch (save OGG stuff if I can
help it) because libFLAC simply will not fit my embedded platform,
For the most part I'm implementing using just the documentation but
not all of the documentation is concise (especially about variable
sized fields) and after looking at the libFLAC source I find myself
befuddled so I thought it best to get the
2008 Nov 03
0
No subject
...PADDING-RIGHT: 0px; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px">
<DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV=20
style=3D"FONT: 10pt arial; BACKGROUND: #e4e4e4; font-color: =
black"><B>From:</B>=20
<A title=3Divailo91 at gmail.com =
href=3D"mailto:ivailo91 at gmail.com">Ivailo=20
Karamanolev</A> </DIV>
<DIV style=3D"FONT: 10pt arial"><B>To:</B> <A =
title=3Dflac-dev at xiph.org=20
href=3D"mailto:flac-dev at xiph.org">flac-dev at xiph.org&...
2012 Oct 06
0
Questions about FLAC documentation
If you only have a C compiler, how can you compile the C++ code to put a C
frontend on it?
On Sat, Oct 6, 2012 at 2:01 AM, Gravis <flac at adaptivetime.com> wrote:
> I'm implementing a FLAC decoder from scratch (save OGG stuff if I can
> help it) because libFLAC simply will not fit my embedded platform,
> For the most part I'm implementing using just the documentation but
2010 Jun 22
2
FLAC StreamInfo Parsing
Hello Ilia,
The FLAC format by nature is not a byte stream, it's a bit stream.
Therefore, in order to parse it you need too build a bit-reading
infrastructure. Eg. a class that accepts a byte stream, implements
buffering, etc, etc, and supports reading a specified number of bits, not
bytes as you are used to. There is quite a lot of bit logic there, but
nothing too scary.
Best Regards,
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
2010 Jan 06
4
FLAC C API / Visual Studio 2008 FILE* Issue
I thought about this, and the MSVCRT mismatch also. What annoys me is that I
even tried compiling the library myself (with exactly the same Visual Studio
2008 as my application) and the bug didn't change the least. Thank you for
your ideas, but unless someone can confirm this, there still remains the
possibility that I've made an error somewhere. Also someone with more
experience with
2010 Jan 05
3
FLAC C API / Visual Studio 2008 FILE* Issue
I managed to get around it. I used the stream functions and provided my own
callbacks for reading and writing. What's strange is that what I've done is
just copied the contents of read/write/seek/tell/eof callbacks from the
sources to my application and it works just fine, no glitches. When I use
the build-in implementation, it just crashes without any reason. It's not a
problem to