diff --git a/test/ogg.cpp b/test/ogg.cpp new file mode 100644 index 00000000..fef39fe3 --- /dev/null +++ b/test/ogg.cpp @@ -0,0 +1,14 @@ +#include + +int main() +{ + ogg_sync_state sync; + AEDI_EXPECT(ogg_sync_init(&sync) == 0); + AEDI_EXPECT(ogg_sync_check(&sync) == 0); + + ogg_stream_state stream; + AEDI_EXPECT(ogg_stream_init(&stream, 1) == 0); + AEDI_EXPECT(ogg_stream_check(&stream) == 0); + + return 0; +}