search for: ivailo

Displaying 20 results from an estimated 32 matches for "ivailo".

Did you mean: avail
2010 Jun 22
2
FLAC StreamInfo Parsing
...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, Ivailo Karamanolev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac-dev/attachments/20100622/ad5b992f/attachment.htm
2006 Dec 07
2
help-links.sh not found by help.start() -- do I need to recompile?
...temporary build directory that clearly isn't valid now. My question is: has the mentioned path become hard-coded in the binaries or am I missing some config-file/wrapper script that needs to be edited in order to reflect the current state? Thank you in advance for any hints! All the best, Ivailo
2006 Dec 15
3
Installing rgl package under Ubuntu
...n of package 'rgl' had non-zero exit status in: install.packages("rgl", dependencies = T) +---------------------------------------+ Has anyone experienced a similar problem, and what would be the resolution of the "X11 not found" message? Thank you in advance! Greets, Ivailo
2010 Jan 05
3
FLAC C API / Visual Studio 2008 FILE* Issue
...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 with > > FLAC__stream_decoder_init_FILE, h...
2008 Nov 03
0
No subject
else. Stuart =20 ----- Original Message -----=20 From: Ivailo Karamanolev=20 To: flac-dev at xiph.org=20 Sent: Wednesday, January 06, 2010 7:49 AM Subject: Re: [Flac-dev] 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...
2010 Jan 06
4
FLAC C API / Visual Studio 2008 FILE* Issue
...experience with native debuggers (I'm a kind of .NET man) may be able to detect where the error comes from more precisely. About the Windows weirdness - we all want to program for Linux/Unix only, but even I don't want to use it for my desktop, so I guess we'll have to deal with Win32. Ivailo Karamanolev On Wed, Jan 6, 2010 at 1:15 AM, Ben Allison <benski at winamp.com> wrote: > Ivailo - > > FILE objects are internal to the C runtime library, they are not system > objects like HANDLEs (windows) or file descriptors (unix). This means > that if libFLAC has linked a...
2018 Jul 31
1
Warning messages in terminal after running help.start() and accessing the package index
....na() applied to non-(list or vector) of type 'NULL' 2: In is.na(x) : is.na() applied to non-(list or vector) of type 'NULL' This happens on both R-3.4.4 and R-3.5.1 running in XFCE-Terminal and Sakura. Is there a way to suppress/fix the reason for these warning messages? Cheers, Ivailo
2004 Feb 02
1
filled contour + points
...on top of that using points(). Trouble is, the x axis of the contour plot is modified to make room for the legend but points() is not aware of that. It could be easily tackled by using a linear transformation of x in points(), but does anyone know exactly *what* transformation? Kind regards Ivailo Partchev
2010 Jul 29
1
Flac-dev Digest, Vol 70, Issue 5
...pplications so I can't give you any specific advice for that. Another option is to get a developer to create a simple application for that purpose - it won't be difficult by any means. On Thu, Jul 29, 2010 at 12:14 PM, Neil Wilkes < neilwilkes at opusproductions.com> wrote: > Hi Ivailo. > > That isgood newsthen - I like to be wrong in these cases!! > The obvious question is coming though... > How in the Blazes do I create this "custom generated CUE sheet" then, > please? > All I have is a 24/48 stereo stream on HDD and the FLAC FrontEnd GUI. > Canno...
2006 May 03
1
demo() output looks garbled in default pager (less and most)
...-------------------------------------+ The other pageable output tried so far (e.g. library() or ?demo) appears OK in either less and in most. I wonder if I should file a bug about this issue or to seek the solution in a local system misconfiguration. Thank you for any helpful input! Regards, Ivailo -- "Ignorance more frequently begets confidence than does knowledge..." -- Charles Darwin
2010 Jan 05
0
FLAC C API / Visual Studio 2008 FILE* Issue
Ivailo - FILE objects are internal to the C runtime library, they are not system objects like HANDLEs (windows) or file descriptors (unix). This means that if libFLAC has linked against a different C runtime library than your application, then the two FILE objects are incompatible. This isn't just...
2007 May 19
4
GPG key for Ubuntu packages
Hi! Is anyone experiencing the following: $ gpg --keyserver subkeys.pgp.net --recv-key E2A11821 gpg: requesting key E2A11821 from hkp server subkeys.pgp.net gpg: keyserver timed out gpg: keyserver receive failed: keyserver error Regards, Gregor
2010 Jul 29
0
Flac-dev Digest, Vol 70, Issue 5
Hi Ivailo The problem with an embedded CUE sheet is that this requires 2 preconditions. 1 - that the FLAC files are taken from an Audio CD, and 2 - that a drive is used such as a Plextor that can manage to do this properly. Neither condition applies here. The files I needto turn into FLAC files are 24 bi...
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 Jun 23
3
FLAC StreamInfo Parsing
...to decode StreamInfo, VorbisComments,SeekPoints and Application blocks without bitStream implementation. But I'd be really pleased if anyone pointed me out how to deal with endianness. Thank you! 2010/6/23 Brian Willoughby <brianw at sounds.wa.com>: > > On Jun 22, 2010, at 07:21, Ivailo Karamanolev wrote: >> 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,...
2006 Dec 19
4
Upgrading
Hi! As per Thomas' advice, I upgraded R by using "update.packages()" and got the following warning messages: Warning messages: 1: installation of package 'lmtest' had non-zero exit status in: install.packages(update[, "Package"], instlib, contriburl = contriburl, 2: installation of package 'quadprog' had non-zero exit status in: install.packages(update[,
2010 Jan 05
0
FLAC C API / Visual Studio 2008 FILE* Issue
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 with > FLAC__stream_decoder_init_FILE, however I get a runtime crash...
2007 May 08
0
irtoys
...tics, scaling methods, ability estimation, simulation facilities etc. are also included. Please notice that most options in estimating an IRT model are kept to the typical default values, and only a small, common subset of the ltm, ICL, and BILOG syntax is supported. Comments are very welcome. Ivailo Partchev Institute of Psychology University of Jena Germany _______________________________________________ R-packages mailing list R-packages at stat.math.ethz.ch https://stat.ethz.ch/mailman/listinfo/r-packages
2011 Jul 20
0
irtoys 0.1.4
...e with the original 1980 article of Haebara, and he has written code for the symmetrical versions of the Haebara and Stocking-Lord scaling methods, now available as an option; (ii) I have finally added a wle function for the bias-corrected estimates of ability aka Warm's estimates Kind regards Ivailo Partchev _______________________________________________ R-packages mailing list R-packages at r-project.org https://stat.ethz.ch/mailman/listinfo/r-packages
2007 May 01
1
R 2.5.0 packages for Debian stable/etch
Dear list, R 2.5.0 packages for Debian stable (i386 and amd64) are now available from CRAN. The new recommended codetools and rcompgen packages haven't completely made it to Debian yet, but can of course be installed in the standard non-Debian ways. Please consult the README file in the Debian directory, and report problems to me directly or to this list. Best regards, Johannes Ranke --