Displaying 1 result from an estimated 1 matches for "m_ti".
Did you mean:
_ti
2004 Oct 02
2
Theora decode problem
...ethod is equal to 5 (CODE_GOLDENFRAME), which doesn't
initialize the moving vectors - and yet it goes into this area anyway
and promptly blows up because the moving vectors are garbage.
I'm not sure what I'm doing wrong. Here's my encryption initialization:
theora_info_init(&m_ti);
m_ti.width=176;
m_ti.height=144;
m_ti.frame_width=176;
m_ti.frame_height=144;
m_ti.offset_x=0;
m_ti.offset_y=0;
m_ti.fps_denominator=(ogg_uint32_t)1000000.0;
m_ti.fps_numerator=10 * m_ti.fps_denominator; //10 is 10
frames per second
m_ti.aspect_numerator=1;
m_ti.aspect_den...