search for: etheora_get_width

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

2007 Oct 31
1
etheora
...(&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_aspect_numerator(&ec); etheora_get_aspect_denominator(&ec); /*getting next frame by decoding it.*/ etheora_dec_nextframe(&ec); /*getting frame data, by reading...
2007 Oct 31
1
etheora
...(&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_aspect_numerator(&ec); etheora_get_aspect_denominator(&ec); /*getting next frame by decoding it.*/ etheora_dec_nextframe(&ec); /*getting frame data, by reading...