noop.c

来自「mediastreamer2是开源的网络传输媒体流的库」· C语言 代码 · 共 68 行

C
68
字号
#include <theora/theora.h>#include "tests.h"static intnoop_test_encode (){  theora_info ti;  theora_state th;  INFO ("+ Initializing theora_info struct");  theora_info_init (&ti);  INFO ("+ Initializing theora_state for encoding");  if (theora_encode_init (&th, &ti) != OC_DISABLED) {    INFO ("+ Clearing theora_state");    theora_clear (&th);  }  INFO ("+ Clearing theora_info struct");  theora_info_clear (&ti);  return 0;}static intnoop_test_decode (){  theora_info ti;  theora_state th;  INFO ("+ Initializing theora_info struct");  theora_info_init (&ti);  INFO ("+ Initializing theora_state for decoding");  theora_decode_init (&th, &ti);  INFO ("+ Clearing theora_state");  theora_clear (&th);  INFO ("+ Clearing theora_info struct");  theora_info_clear (&ti);  return 0;}static intnoop_test_comments (){  theora_comment tc;  theora_comment_init (&tc);  theora_comment_clear (&tc);  return 0;}int main(int argc, char *argv[]){  /*noop_test_decode ();*/  noop_test_encode ();  noop_test_comments ();  exit (0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?