search for: ogg_stream_packetpeek

Displaying 5 results from an estimated 5 matches for "ogg_stream_packetpeek".

2001 Nov 18
5
vorbisfile.o givng me problems
...ned-char -DUSE_MEMORY_H -o seeking_example seeking_example.o ../lib/.libs/libvorbisfile.a -lm -logg ../lib/.libs/libvorbis.a -lm -logg -lm -L/usr/local/lib/lib -logg ../lib/.libs/libvorbisfile.a(vorbisfile.o): In function `ov_pcm_seek_page': vorbisfile.o(.text+0x19fc): undefined reference to `ogg_stream_packetpeek' ../lib/.libs/libvorbisfile.a(vorbisfile.o): In function `ov_pcm_seek': vorbisfile.o(.text+0x1c32): undefined reference to `ogg_stream_packetpeek' collect2: ld returned 1 exit status make[1]: *** [vorbisfile_example] Error 1 make[1]: *** Waiting for unfinished jobs.... ../lib/.libs/libv...
2001 Nov 18
5
vorbisfile.o givng me problems
...ned-char -DUSE_MEMORY_H -o seeking_example seeking_example.o ../lib/.libs/libvorbisfile.a -lm -logg ../lib/.libs/libvorbis.a -lm -logg -lm -L/usr/local/lib/lib -logg ../lib/.libs/libvorbisfile.a(vorbisfile.o): In function `ov_pcm_seek_page': vorbisfile.o(.text+0x19fc): undefined reference to `ogg_stream_packetpeek' ../lib/.libs/libvorbisfile.a(vorbisfile.o): In function `ov_pcm_seek': vorbisfile.o(.text+0x1c32): undefined reference to `ogg_stream_packetpeek' collect2: ld returned 1 exit status make[1]: *** [vorbisfile_example] Error 1 make[1]: *** Waiting for unfinished jobs.... ../lib/.libs/libv...
2001 May 26
2
merging monty's branch
...l), but doesn't seek to learn the chain structure or total length. A partially open file can then be fully opened using ov_test_open(). Libvorbis now has an official vorbis_packet_blocksize() function to learn the block size of a packet without decoding it. Libogg also has one new function, ogg_stream_packetpeek(), which fetches the next packet in a logical stream without removing it from the stream head. None of these changes should affect binary compatability with prebuilt applications. Monty --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To...
2004 Mar 13
1
Ogg / Vorbis Compiling under W32 with MingW ** Problem **
...e '*' token framing.c: In function `ogg_stream_packetout': framing.c:886: `os' undeclared (first use in this function) framing.c:886: `op' undeclared (first use in this function) framing.c: At top level: framing.c:889: parse error before '*' token framing.c: In function `ogg_stream_packetpeek': framing.c:890: `os' undeclared (first use in this function) framing.c:890: `op' undeclared (first use in this function) framing.c: At top level: framing.c:893: parse error before '*' token framing.c: In function `ogg_packet_clear': framing.c:894: `op' undeclared (first...
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...; extern long ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og); extern int ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og); extern int ogg_stream_pagein(ogg_stream_state *os, ogg_page *og); extern int ogg_stream_packetout(ogg_stream_state *os,ogg_packet *op); extern int ogg_stream_packetpeek(ogg_stream_state *os,ogg_packet *op); /* Ogg BITSTREAM PRIMITIVES: general ***************************/ extern ogg_stream_state *ogg_stream_create(int serialno); extern int ogg_stream_destroy(ogg_stream_state *os); extern int ogg_stream_reset(ogg_stream_state *os); extern int ogg_s...