search for: etheora_enc_finish

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

Did you mean: etheora_dec_finish
2007 Oct 31
1
etheora
...mp;ec); /*drawing next frame, by puting a r,g,b or y,u,v pixel in (i,j) coordinate*/ etheora_enc_rgb_draw(&ec, i, j, r, g, b) (alternative: 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.*/...
2007 Oct 31
1
etheora
...mp;ec); /*drawing next frame, by puting a r,g,b or y,u,v pixel in (i,j) coordinate*/ etheora_enc_rgb_draw(&ec, i, j, r, g, b) (alternative: 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.*/...