Displaying 1 result from an estimated 1 matches for "write_ogg_pag".
Did you mean:
write_ogg_page
2003 Sep 11
1
Flushing audio
...gg_pkt);
while(1){
int result = ogg_stream_flush(&ogg_stream, &page);
if(!result)
break;
write_ogg_page(&page);
}
}
}
My problem is that in some cases, i capture some data from the sound card
and i feed it to this function, but vorbis_analysus_blockout doesnt output
any block.
When i encode all the data i capture from the sound card (continuos
audio), it works fine....