1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-13 20:01:56 +00:00
srs/trunk/research/frame/st0.cpp

15 lines
230 B
C++
Raw Normal View History

2020-10-31 03:30:58 +00:00
/*
g++ st0.cpp ../../objs/st/libst.a -g -O0 -o st && ./st
*/
#include <stdio.h>
#include "../../objs/st/st.h"
int main(int argc, char** argv) {
st_init();
for (;;) {
st_usleep(1000 * 1000);
}
return 0;
}