similar to: Underscores in BCB making vorbisfile unusable

Displaying 20 results from an estimated 700 matches similar to: "Underscores in BCB making vorbisfile unusable"

2003 Apr 01
1
Underscores in BCB making vorbisfile unusable
I use Borland C++ Builder 3 and I'm having trouble getting vorbisfile to work. This version of C++ Builder prefixes function names with underscores, so in the .obj file ov_open would look like _ov_open. Now, when linking the .obj files, it looks for the function _ov_open in all other .obj files and .lib files in the project. It finds none, and gives me an unresolved external error. I can
2004 Oct 25
0
speex headers and borland c++ builder (bcb)
hello, I try to include the speex header to a bcb project. Speex headers are the latest one. My first problem was to use the lib file with bcb. I solved this issue by restructing the lib file. The second problem is to access the constant called "extern const SpeexMode speex_nb_mode;" through borland's c++ builder. I could analyze the export table of the libspeex.dll. Unfortunately I
2001 Jan 29
1
BCB build successful?
Ha ha! I'm don't know what change I made that cleared up the errors, but I can figure that out later. Of course, I immediately tested my new oggenc. Using the same input file and default options, I get these results: [MSVC] File length: 4m 21.0s Elapsed time: 0m 54.0s Rate: 4.8333 Average bitrate: 129.6 kb/s File size: 4,229,428 [BCB]
2001 Jan 27
0
Vorbis with BCB
After downloading the nightly snapshot last night, I've spent a good part of the day trying to build the package with Borland C++Builder 4. I have some things to report, and also need some help. [Note: this message is long and messy :)] {Converting DSP files to BPR files} I made the necessary BPR files from the DSP files with the Visual C++ Project Conversion Utility. This works okay
2003 Jun 16
4
Launch of OggHelp.com
Hello everyone, I would like to bring to your attention the new website that I have been working on. It is a portal for articles, links, and support for everything related to Ogg Vorbis. It just started and hopefully will be evolving rapidly. http://www.ogghelp.com I have modeled it after the group of successful Help pages such as http://VCDHelp.com and DVDHelp.com. I've been
2003 Jun 24
1
Ogg Traffic for June 24, 2003
Here is the latest round of status updates and recent developments from the Xiph.org team. The HTML version is at http://www.vorbis.com/ot/20030624.html Enjoy! -Carsten <p>Ogg Traffic for Tuesday, June 24, 2003 Author: Carsten "Purple" Haese Contact: [1]carsten@xiph.org Date: June 24, 2003 Table of Contents 1 Status Updates 1.1 Monty
2001 Aug 15
3
DJGPP patches and makefiles
Hi. Here are my patches and makefiles for compiling ogg, vorbis and vorbis-tools on DOS with DJGPP. They can build them from cvs snapshots and need minimal maintainance (even extract source lists from `makefile.am's). Everything seems to work, except one FP exception on encode at middle bitrates (lowest two and highest bitrates don't cause it) - I don't think it's my
2017 Jan 13
1
[PATCH] support nasm coff obj format for djgpp
Attached patch adds support nasm coff obj format for djgpp -- O.S. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-support-nasm-coff-obj-format-for-djgpp.patch Type: application/octet-stream Size: 1227 bytes Desc: not available URL: <http://lists.xiph.org/pipermail/flac-dev/attachments/20170113/8c51e0dc/attachment.obj>
2017 Jan 13
1
[PATCH] workaround for DJGPP missing wcswidth()
Attached patch works around for DJGPP missing wcswidth() in flac/utils.c:strlen_console() -- O.S. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-flac-utils.c-strlen_console-workaround-for-DJGPP-mis.patch Type: application/octet-stream Size: 683 bytes Desc: not available URL:
2016 Mar 09
0
DJGPP in Fedora
I'm wondering if there is anyone who might be interested in working with this guy to get the djgpp cross-compiler into the Fedora repos? https://groups.google.com/forum/m/#!topic/comp.os.msdos.djgpp/8gp0LtLY6DI -- Sent from my Android device with K-9 Mail. Please excuse brevity and formatting.
2001 Aug 30
1
Problems with vorbisfile and files smaller than CHUNKSIZE
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I'm writing a simple application to decompress a set of Ogg files to raw PCM format, using vorbisfile, because that is the simplest way of doing it. These Ogg files are sounds for a game, and thus sometimes very short (about .25 s). However, vorbisfile has severe problems with Ogg files that are smaller than the CHUNKSIZE which is #defined
2004 Apr 05
2
Massive Problems on Windows XP pro with Libvorbis[Vorbisfile]1.0.1
Hey there I'm using CodeWarrior8 for development on the windows platform and have been trying for some time now to add .ogg support to my engine project. First i had the problem quite a lot had out there with a crashing/freezing call to ov_open which i solved by recompiling those libs against the single-threaded variant of the core libs using VC++ 6 But now i have another problem. now every
2000 Apr 20
3
Thoughts on vorbisfile
Hi all, While reading through various bits of libvorbis and vorbisfile, and then thinking about how to implement other features in the xmms and winamp plugins, I had some thoughts... Vorbisfile is very useful, and very easy to use. It is, however, tied to stdio - which means you can't use it for lots of other stuff where it'd be useful - like streaming, or (under win32) avoiding stdio
2001 Nov 12
1
Vorbisfile: non-seekable
Hi, I use the following code: if (ov_open(NULL, &vf, const_cast<char*>(reinterpret_cast<const char*>(get_data())), get_size()) < 0) error = 0x100; else { vorbis_info* vi = ov_info(&vf, -1); Cvirtual_file f; const int cb_samples = ov_pcm_total(&vf, -1); const bool seekable = ov_seekable(&vf); So all data is already in memory and passed to
2001 Oct 31
0
vorbisfile weirdness
Hi! I'm trying to write a vorbis plugin for my MP3/Music/Media player (http://elmp-tng.sourceforge.net). I'm using vorbisfile, and ov_open_callbacks() (to interface with my VFS layer). The problem is the same using plain ov_open() though... Some files play perfectly, while others (most) fail. ov_open returns OV_EBADHEADER. The really strange thing is that both ogg123, and the simple test
2000 Apr 21
3
vorbisfile updates, and a couple of questions
The changes to vorbisfile that I suggested earlier have now been committed - this is mostly a merge of my code with a similar patch from Martin Vogt (thanks Martin). The old ov_open() interface remains untouched - and for many people, this is all you'll need to use, ever. It now calls the new interface with appropriate arguments. The new ov_open_callbacks() function adds an extra argument to
2003 Dec 14
1
Bride of vorbisfile questions
I've been playing around with using ov_test and ov_test_open as an alternative to ov_open in the xmms plugin's vorbis_check_file function. xmms never bothers to cache the result of a file check, so it tends to happen rather a lot. Unfortunately ov_test_open returns OV_EINVAL because ov_test seems to have left vf->ready_state to OPEN rather than PARTOPEN. I'm presuming this is
2001 Sep 04
2
Problems using vorbisfile.dll
Hello. Not certain this post belongs here, got a little confused about vorbis-dev / vorbis. If it doesn’t, please tell me so :) Well, on to the problem. I’m adding ogg support into an audio-player. For some reason I want it using vorbisfile threw the dll’s. It works just fine with the debug dll. No problems what so ever. But with the Retail dlls, when I call ov_open my memory gets messed up.
1995 Sep 26
0
GPM Modula-2 and Oberon-2 Compilers
GPM Modula-2 and Oberon-2 Compilers File locations: ftp.fit.qut.edu.au:/pub/gpm ftp.psg.com:/pub/modula-2/gpm WEB Site: http://www.fit.qut.edu.au/CompSci/PLAS/GPM/ The Gardens Point Modula (GPM) compilers are an ongoing development project for the Programming Languages and Systems Group in the Faculty of Information Technology at the Queensland University of Technology.
2003 Sep 22
1
vorbisfile for Mac Classic
Hi, this is my first post, I hope it's the right mailing list (or should it be vorbis@xiph.org?) I just downloaded "SDK for MacOS9" and tried to compile the "vorbisfile_example.c" sample with CodeWarrior for Mac 8 on a Mac OS 9.2 machine. I included the libOgg and libVorbis libraries in my project, but the linker cannot file ov_clear(), ov_read(), ov_pcm_total(),