Displaying 8 results from an estimated 8 matches for "vorbisfile_d".
Did you mean:
vorbisfile
2007 Oct 09
1
dlls and encoder_example
...t on VC 6. But when i execute the program, only appears the black visual display screen without obtaining result. where is my problems??
other question: in sdk there is for example, vorbis.dll and vorbis_d.dll, which is the difference?
i have could compile any project like libvorbis 1.2.0/win32/vorbisfile_dynamic.dsp, and i obtain vorbisfile_d.dll and vorbisfile_d.lib, can i use this files like the files of sdk?are the same?
thank and sorry for my english
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
htt...
2005 Nov 01
2
predictability of buffer size for decoding
I am wondering if buffer size for my decoding to pcm can be predicted dependably as follows. So far, the one problem I have had is when I have played a file of only about 5k. The buffer was a little less than 10% too small. I "solved" that by padding the result with an extra 20 percent. However, I have been told that I should be able to rely on the value of ov_pcm_total.
char*
2004 Feb 17
1
Differences In Libraries??
OK, I just noticed I had not only "libname.lib" files with OV, but also "libname_d.lib" files. What are the differences in the two? I am assuming off-hand that the 'd' stands for 'dynamic', but I want to know for sure. I compiled using 'vorbisfile_d.lib' this time instead of 'vorbisfile.lib' and got no errors, but If you guys included two seperate libraries for every file, something's gotta' be different.
Also, what's up with the 'libname_static.lib' and 'libname_static_d.lib' files? I tried compilin...
2004 Feb 17
1
Vorbisfile Problem...
OK, I have a minor problem with the 'vorbisfile' libraries. I copied both the normal and dynamic DLLs to my program directory, and they load fine. Thing is, if I link with 'vorbisfile.lib' and use 'ov_open', the application just locks up. If I link with 'vorbisfile_d.lib' and use the function, Windows brings up a standard crash window, and I can just use that to close it. Why's this happening? I get no errors or warnings upon compile.
Now before some of you recomend I download the source and compile it, then use those libraries, how hard would that...
2002 Feb 05
2
Documentation Suggestions
I'm a developer for a game company and I'm almost done adding support for
Vorbis to our game engine. As such, I wanted to simply plug in the read
function, let it decode, and then send the PCM data on to DirectSound just
like I always have. There were several occasions where I spent 4 or 5
hours trying to fix a bug, digging through newsgroups and sound-format
specs, when that info could
2004 Dec 05
1
ov_open error !
#include <stdio.h>
#include "vorbis/codec.h"
#include "vorbis/vorbisfile.h"
#include <io.h>
#include <fcntl.h>
#pragma comment(lib, "vorbisfile_d")
int main(int argc, char **argv)
{
FILE *fp;
OggVorbis_File obf;
if(argc < 1)
return -1;
if((fp = fopen("f:\\testogg.ogg", "rb")) == NULL)
{
printf("Open Files Error !\n");
return -1;
}
if(ov_open(fp, &obf, NULL, 0) < 0)
{
printf(&...
2002 Jun 26
1
Getting started with vorbisfile_example.c (MS VC 6)
Hello
Hope you don't mind another newbie's question.
Further to GIE's email about problems compiling decoder_example.c example
(MS VC 7) using debug static ogg/vorbis libs, we'd appreciate any help
getting the example files to compile on MS VC 6.
The zip files we have downloaded are:
libao-0.8.2.zip
libogg-1.0rc3.zip
libvorbis-1.0rc3.zip
vorbis-sdk-1.0rc3.zip
2002 Aug 06
0
Getting a GUI to work with Vorbis code
...is is achieved by adding _static to the name of the library
file. The debug versions have a _d appended to their name.
To add the libraries to the project:Select
Project->Settings. Click the Link tab. Under the Object/library modules
section append ogg_d.lib, vorbis_d.lib and vorbisfile_d.lib to the end of
the list. In the Settings For: dropdown menu select Win32 Release. In the
same way as previously add ogg.lib, vorbis.lib and vorbisfile.lib to the end
of the list. Add _static before .lib for Release version if using static
libraries.
If compilation with static...