Displaying 1 result from an estimated 1 matches for "codingmethod".
2004 Oct 02
2
Theora decode problem
...write a sample app that uses Theora for encoding/decoding
a network video stream. Unfortunately, I keep running into this error:
Run-Time Check Failure #3 - The variable 'MVect' is being used without
being defined.
It always happens on decryption, line 467 in decode.c. The issue is
that CodingMethod 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)...