1 #include <theora/theora.h>
11 INFO ("+ Initializing theora_info struct");
12 theora_info_init (&ti
);
14 INFO ("+ Initializing theora_state for encoding");
15 if (theora_encode_init (&th
, &ti
) != OC_DISABLED
) {
16 INFO ("+ Clearing theora_state");
20 INFO ("+ Clearing theora_info struct");
21 theora_info_clear (&ti
);
32 INFO ("+ Initializing theora_info struct");
33 theora_info_init (&ti
);
35 INFO ("+ Initializing theora_state for decoding");
36 theora_decode_init (&th
, &ti
);
38 INFO ("+ Clearing theora_state");
41 INFO ("+ Clearing theora_info struct");
42 theora_info_clear (&ti
);
52 theora_comment_init (&tc
);
53 theora_comment_clear (&tc
);
58 int main(int argc
, char *argv
[])
60 /*noop_test_decode ();*/
64 noop_test_comments ();