Commit 348ecc11 authored by Max Kellermann's avatar Max Kellermann

lib/xiph/OggStreamState: add method PageIn()

parent a9678f0a
......@@ -65,6 +65,10 @@ public:
/* decoding */
bool PageIn(ogg_page &page) {
return ogg_stream_pagein(&state, &page) == 0;
}
int PacketOut(ogg_packet &packet) {
return ogg_stream_packetout(&state, &packet);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment