search for: etheora_enc_start

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

Did you mean: etheora_dec_start
2007 Oct 31
1
etheora
...nd data containers. An encoding process is made by these steps: /*a context declaration.*/ etheora_ctx *ec; /*encoder configuration.*/ etheora_enc_configure(&ec, width, height, ETHEORA_ASPECT_NORMAL, fopen("output-video.ogg"), fopen("debug_info.txt")); /*encoder start.*/ etheora_enc_start(&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....
2007 Oct 31
1
etheora
...nd data containers. An encoding process is made by these steps: /*a context declaration.*/ etheora_ctx *ec; /*encoder configuration.*/ etheora_enc_configure(&ec, width, height, ETHEORA_ASPECT_NORMAL, fopen("output-video.ogg"), fopen("debug_info.txt")); /*encoder start.*/ etheora_enc_start(&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....