📄 avin_example.c
字号:
/********************************************** * Dawn Light Player * * avin_example.c * * Created by kf701.ye at gmail.com * 21:43:19 02/26/08 CST * * $Id: avin_example.c 168 2008-03-21 02:50:01Z kf701 $ **********************************************/#if ENABLE_AVIN_NULL#include <unistd.h>#include "avformat.h"#include "avinput.h"static int avin_example_init(void){ av_log(NULL, AV_LOG_INFO, "INIT input from example\n"); return 0;}static int avin_example_uninit(void){ av_log(NULL, AV_LOG_INFO, "UNINIT input from example\n"); return 0;}static void avin_example_main(void){ sleep(1000);}static int avin_example_control(int cmd, void *arg){ return 0;}avin_t avin_null ={ AVIN_ID_EXAMPLE, "null", avin_example_init, avin_example_uninit, avin_example_main, avin_example_control,};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -