Hello, I recently decided to develop a client-server visio-conference app for windows using libtheora for network communication. But I have a problem initialising the theora encoder : theora_encode_init() returns -23 and I would like to know what it means all I could find in the doc is that it should return 0 in case of success. I understand my call to theora_encode_init() failed, but i'd like to know why... where can i find such a documentation (i'm using libtheora 1.0alpha7) thanks -- Mike KameHouse Prod.
On Wed, Nov 08, 2006 at 04:28:32PM +0100, Mike wrote:> But I have a problem initialising the theora encoder : > theora_encode_init() returns -23 and I would like to know what it meansThe error codes are defined in theora.h. -23 is OC_IMPL "Feature or action not implemented". In 1.0alpha7 this means you tried to use a chroma subsampling pixelformat other than OC_PF_420. 4:2:2 and 4:4:4 are currently unimplemented. Hope that helps, -r