search for: ogg_stream_reset_serialno

Displaying 8 results from an estimated 8 matches for "ogg_stream_reset_serialno".

2004 Nov 01
1
compile libvorbis using mingw?
...undefined reference to `ogg_sync_reset' .libs/vorbisfile.o(.text+0x314):vorbisfile.c: undefined reference to `ogg_stream_clear' .libs/vorbisfile.o(.text+0x39e):vorbisfile.c: undefined reference to `ogg_sync_clear' .libs/vorbisfile.o(.text+0x6a9):vorbisfile.c: undefined reference to `ogg_stream_reset_serialno' .libs/vorbisfile.o(.text+0x6f6):vorbisfile.c: undefined reference to `ogg_stream_init' .libs/vorbisfile.o(.text+0x6fe):vorbisfile.c: undefined reference to `ogg_stream_reset' .libs/vorbisfile.o(.text+0x71c):vorbisfile.c: undefined reference to `ogg_stream_packetout' .libs/vorbis...
2009 Jun 18
1
ogg_stream_reset() question
Hi Ogg experts! My current work is catenating packets from several ogg files to the one long stream, so I'd like to create stream once, and then reset it just before reading codec headers from every new file. However, after calling ogg_stream_reset_serialno(ogg_stream_state *os, int serialno), bos page is not pushed in stream since it calls ogg_stream_reset(ogg_stream_state *os), which set os->pageno to -1, while ogg_stream_init(ogg_stream_state *os, int serialno) sets it to 0. If I call ogg_stream_reset(), and the explicitly set os->pageno =...
2003 Jun 11
1
Problems with ov_open
...gPlay $(LIBS) oggPlay.o : oggPlay.c gcc $(CFLAGS) -c oggPlay.c clean: /bin/rm oggPlay.o *.*~ <p>------------------------------ERROR---------------------------------- bash$ oggPlay ../rock.ogg oggPlay: relocation error: /usr/local/lib/libvorbisfile.so.3: undefined symbol: ogg_stream_reset_serialno -------------------------------LDD OGGPLAY------------------------------ bash-2.05a$ ldd oggPlay libvorbisfile.so.3 => /usr/local/lib/libvorbisfile.so.3 (0x40024000) libvorbis.so.0 => /usr/lib/libvorbis.so.0 (0x4002c000) libogg.so.0 => /usr/lib/libogg.so.0 (0x4004...
2007 Apr 14
0
Discontinuous stream support in libogg1
...eneral ***************************/ extern int ogg_stream_init(ogg_stream_state *os,int serialno); +extern int ogg_stream_setdiscont(ogg_stream_state *os); extern int ogg_stream_clear(ogg_stream_state *os); extern int ogg_stream_reset(ogg_stream_state *os); extern int ogg_stream_reset_serialno(ogg_stream_state *os,int serialno); Index: src/framing.c =================================================================== --- src/framing.c (revision 12848) +++ src/framing.c (working copy) @@ -214,6 +214,15 @@ return(0); } +int ogg_stream_setdiscont(ogg_stream_state *os){ + /* Discont m...
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...// because ogg_stream_pagein does braindead release on error and // ogg_page_bos() doesn't seem to work for a concatenated stream. dprintf("Beginning of stream found\n"); // Use hex to match ogginfo return dprintf("Setting serial number: %x\n", ogg_page_serialno(og)); ogg_stream_reset_serialno(os, ogg_page_serialno(og)); } // EOS test has to be up front because, of course, everything in the universe // releases the page so you have to get to it *before* it disappears // and store it yourself in spite of the fact that the page stores it // very nicely (until...
2004 Mar 13
1
Ogg / Vorbis Compiling under W32 with MingW ** Problem **
...function) framing.c: At top level: framing.c:806: parse error before '*' token framing.c: In function `ogg_stream_reset': framing.c:807: `os' undeclared (first use in this function) framing.c: At top level: framing.c:825: parse error before '*' token framing.c: In function `ogg_stream_reset_serialno': framing.c:826: `os' undeclared (first use in this function) framing.c: At top level: framing.c:831: parse error before '*' token framing.c: In function `_packetout': framing.c:837: `os' undeclared (first use in this function) framing.c:849: `op' undeclared (first use i...
2008 Apr 04
0
speexdec 1.2.3
...g_sync_pageout(&oy, &og)==1) { int packet_no; if (stream_init == 0) { ogg_stream_init(&os, ogg_page_serialno(&og)); stream_init = 1; } if (ogg_page_serialno(&og) != os.serialno) { /* so all streams are read. */ ogg_stream_reset_serialno(&os, ogg_page_serialno(&og)); } /*Add page to the bitstream*/ ogg_stream_pagein(&os, &og); page_granule = ogg_page_granulepos(&og); page_nb_packets = ogg_page_packets(&og); if (page_granule>0 && frame_size) {...
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> wrote: > Jahn, Ray (R.) a ?crit : > > > Dear Speex codec community: > > > > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any