zdoom-macos-deps/test/libmpg123.cpp

16 lines
312 B
C++
Raw Normal View History

2020-12-26 09:39:44 +00:00
#include <mpg123.h>
int main(int argc, char **argv)
{
2021-05-17 07:28:55 +00:00
AEDI_EXPECT(mpg123_init() == MPG123_OK);
2021-05-16 07:05:31 +00:00
mpg123_handle* mh = mpg123_new(NULL, NULL);
2021-05-17 07:28:55 +00:00
AEDI_EXPECT(mh != nullptr);
AEDI_EXPECT(mpg123_param(mh, MPG123_VERBOSE, 1, 0.) == MPG123_OK);
2021-05-16 07:05:31 +00:00
mpg123_delete(mh);
mpg123_exit();
2021-05-16 07:05:31 +00:00
return 0;
2020-12-26 09:39:44 +00:00
}