mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-23 12:22:40 +00:00
add vorbis test
This commit is contained in:
parent
7cbc332170
commit
3982c51e02
1 changed files with 15 additions and 0 deletions
15
test/vorbis.cpp
Normal file
15
test/vorbis.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include <vorbis/codec.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
vorbis_info info;
|
||||
vorbis_info_init(&info);
|
||||
vorbis_info_clear(&info);
|
||||
|
||||
vorbis_comment comment;
|
||||
vorbis_comment_init(&comment);
|
||||
vorbis_comment_add(&comment, "content");
|
||||
vorbis_comment_clear(&comment);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue