similar to: Problems with ov_open

Displaying 20 results from an estimated 500 matches similar to: "Problems with ov_open"

2003 Jun 11
1
Problems with ov_open continued
I've downloaded the latest versions of the libraries available from the website, http://www.vorbis.com/download_unix.psp, and compiled them, but it hasn't made any difference to the situation. I downloaded the .tar.gz "for everyone" versions, not the rpm developer versions. Will this make any difference? Cheers, Oliver Sneyd <p>--- >8 ---- List archives:
2003 Jun 13
2
Trouble decoding number of codebooks
I'm having trouble decoding the number of codebooks out of an ogg file, and was wondering if anyone here could lend a hand? I read in the sync pattern, and I think the codebook dimensions properly, but when I try and read in the number of codebook entries, I get a number larger than the number of bytes in the file, which I have to assume is wrong :) Anyway this is how I read in the numbers :
2003 Jul 28
1
error when compiling oggplay
Hi every body , i try to compile oggplayer but : "./autogen.sh --prefix=/usr " is OK and "make" : oggplay.c: At top level: oggplay.c:377: parse error before "mymngsettimer" oggplay.c:377: parse error before "mng" oggplay.c: In function `mymngsettimer': oggplay.c:379: `stuff' undeclared (first use in this function) oggplay.c:384: parse error before
2008 Aug 05
0
Announcing first release of liboggplay
OggPlay 0.0.1 Release --------------------- liboggplay is a C library providing a simple programming interface for reading, decoding and playing back Ogg files and streams. Ogg is an interleaving data container developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio format. This release is available as a source tarball at:
2008 Aug 05
0
Announcing first release of liboggplay
OggPlay 0.0.1 Release --------------------- liboggplay is a C library providing a simple programming interface for reading, decoding and playing back Ogg files and streams. Ogg is an interleaving data container developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio format. This release is available as a source tarball at:
2008 Dec 16
0
liboggplay: RGBA overlay video, rendering with libtiger
Hi ogg.k ogg.k, some drive by comments on the patch from a quick look. Should these be wrapped in HAVE_KATE? Same with the definition of the functions on oggplay.c? If I'm not building with Kate support it would prevent dead code from being around. -----------------8<--------------------------- OggPlayErrorCode oggplay_get_kate_category(OggPlay *me, int track, const char** category);
2008 Apr 23
2
[PATCH] liboggplay - kate support, build fixes, and misc
> I think you forgot to include oggplay-uninstalled.pc.in in the patch :-) Attached, plus the oggplay.pc.in as well, as I added @KATE_CFLAGS@ to both. Also attached is a patch to avoid miscounting the number of active tracks (a bug in my previous patch), and the current patch to the mozilla plugin (still work in progress, the Javascript API will change a little) if anyone feels like
2002 Dec 27
1
ov_open throws exception (Compiler VC7)
Hi I try to load an ogg file with the vorbisfile library like this: FILE *f = fopen("test.ogg", "rb"); if(!f) ...; ov_open(f, &vf, 0, 0); But ov_open always throws an exception. Im pretty sure its a compiler problem because the same code worked on VC6. Im compiling my programm with the multithreaded dll option as mentioned on the mailing list bevor. Does anybody know if
2003 Feb 27
1
ov_open from memory
Hi folks, i would like to know if it is valid to load a whole .ogg file into memory and call ov_open like this: ov_open(NULL, &OggVorbisFile, pRawData, RawDataLen); An other question is, is it valid to copy some ogg files into one (resource) file, position the filehandle and use ov_read to read only the ogg file which starts at the current position of the file handle? (In other words, does
2005 Jun 17
1
ov_open fails on Version 1.0.1
Eddie, I have been reviewing vorbis list postings, because I have been spinning my wheels for a week, trying to make a simple insertion of ogg vorbis decoding (vorbisfile) in the audio class of my MFC/C++ program. I just read your thread from April 2004. Question: Do you have anything you could send me, since I assume you succeeded in getting results? And/or could you take a look at what I
2005 Jun 30
2
Reading from memory and ov_open
Hi, I've been working with oggvorbis-win32sdk-1.0.1 and have a semi-hypothetical question. Let's suppose that, for whatever reason, I've allocated a block of memory, and I've loaded into this memory a perfectly valid ogg vorbis file. Now I'd like to decode this vorbis data, but I'm stuck calling ov_open() because I don't have a FILE*, I have a block of memory. (This
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
2004 Apr 06
1
ov_open fails on Version 1.0.1
Hi, I've just got around to moving from version 1.0 to 1.0.1. Now when I run my program, at least on Windoze, (haven't tried Linux yet), I get an Access Exception on the ov_open. Nothing else has changed. All I did was replace the lib and dll files that are in the win32sdk zip and re-build all, so it's the same the project files for for both builds. Here the snippet of code that
2001 Feb 18
2
Access Violation in ov_open
If I do something similar to the below ov_open always causes an access violation. The call to fopen is successful. Can anybody tell me why? (and how to fix it?) OggVorbis_File vf; int eof=0; int current_section; FILE *fd = fopen("c:\\test.ogg","rb"); if (!fd){ AfxTrace("fopen failed\n"); exit(0); } if(ov_open(fd, &vf, NULL, 0) < 0) {
2002 Apr 24
2
ov_open error
Hi, I put together a small a Visual C++ 6.0 project that uses the code from vorbisfile_example.c. I open an ogg file in binary mode and when ov_open gets called, it always fails. I then put together another project and compiled vorbisfile so I could see where the error was occuring. It is happening in _fetch_headers when it calls ogg_stream_packetout. The return values is -1, which means there
2005 May 23
1
Why does ov_open fail?
hello everyone. after reading through the api manual of the ogg vorbis win32 sdk, i tried to implement a very simple comment reader in visual c++. but for some reason the very first operation to initialize the OggVorbis_File struct keeps failing and i can't figure out why. is there anything i might not have considered? The memory exception seems to happen deep within the calling tree of
2004 Feb 09
3
Problem with 'ov_open'...
Hey, I've coded an OGG player for Win32 (it uses AL for playback so it's portable to Linux/Mac), but every time the program gets to the 'ov_open()' function, the app completely freezes, and I have to use the task-manager to kill it. I am supplying it with a valid file handle that was just opened (FILE*) and the vorbis file is also a pointer that is not in use (set to null). Any
2004 Jan 06
0
AW: access violation in ov_open
hmmm...when using my self-compiled *_static lib's all works fine. (the shipped *_static lib's conflict with my libcmt.lib because of multiple definitions of some functions) only the dynamic libs cause an access-violation in NTDLL greetings, Sebastian ---------- <p><p>Hi! my code causes access-violations in ov_open. I'm using MS VisualC++ 6 SP5 on WinXPpro with oggvorbis
2005 Apr 03
0
Direct crash on ov_open
Greetings, I've just downloaded the Ogg/Vorbis Win32 SDK 'OggVorbis-win32sdk-1.0.1.zip' and made a test app to open an ogg file. But as soon as I call ov_open() the program crashes because of an access violation to address 0x00000010... This happens on both Release and Debug builds. The test app is simple: #include "vorbis/codec.h" #include "vorbis/vorbisfile.h"
2004 Mar 06
3
access violation in ov_open using VC6
I passed a valid FILE* (from fopen() with "rb") and the address of an OggVorbis_File struct, but an access violation occured when ov_open is called. I have enabled the Multithreaded, but it still doesn't fix the problem. I look at the vorbis_comment.exe source and I see vcedit_open() function and other vcedit_*() functions everywhere. I am assuming that there is known issue with VC