search for: etheora_dec_configur

Displaying 2 results from an estimated 2 matches for "etheora_dec_configur".

Did you mean: etheora_dec_configure
2007 Oct 31
1
etheora
...e: etheora_enc_yuv_draw()), /*submiting frame to encoding.*/ etheora_enc_nextframe(&ec); /*submiting last frame to encoding by finishing the process.*/ etheora_enc_finish(&ec); The decoding process is quite similar. /*a context declaration.*/ etheora_ctx *ec; /*decoder configuration.*/ etheora_dec_configure(&ec, fopen("input-video.ogg"), fopen("debug_info.txt")); /*decoder start.*/ etheora_dec_start(&ec); /*reading video data.*/ etheora_get_width(&ec); etheora_get_heigth(&ec); etheora_get_fps_numerator(&ec); etheora_get_fps_denominator(&ec); etheora_get_a...
2007 Oct 31
1
etheora
...e: etheora_enc_yuv_draw()), /*submiting frame to encoding.*/ etheora_enc_nextframe(&ec); /*submiting last frame to encoding by finishing the process.*/ etheora_enc_finish(&ec); The decoding process is quite similar. /*a context declaration.*/ etheora_ctx *ec; /*decoder configuration.*/ etheora_dec_configure(&ec, fopen("input-video.ogg"), fopen("debug_info.txt")); /*decoder start.*/ etheora_dec_start(&ec); /*reading video data.*/ etheora_get_width(&ec); etheora_get_heigth(&ec); etheora_get_fps_numerator(&ec); etheora_get_fps_denominator(&ec); etheora_get_a...