|
From: Gonzalo B. <go...@br...> - 2009-11-27 17:43:17
|
Devs: Finally found the problem. The orkAudio defines a InitMessage (added on the version 643) and the OrkTrack does not know about it (yes, the class exist on c++ but not in java). Also found another bug on the SoundDevicePlugin: You need to change this: chunkRef->SetBuffer(rightBuffer, sizeof(short)*framesPerBuffer, details); for this: chunkRef->SetBuffer(rightBuffer, details, sizeof(short)*framesPerBuffer); on 3 places (Tha parameter order changes). Gonzalo A. Brusella go...@br... http://www.brusella.com.ar On Fri, Nov 27, 2009 at 12:37, Gonzalo Brusella <go...@br...>wrote: > New data: > > The orkAudio is executing this URL: > > > http://localhost:8080/orktrack/command?type=init&name=orkaudio-ARGSVCVOIP12&hostname=ARGSVCVOIP12&servicetype=A&tcpport=59140&protocol=&fileserveport=8080&contextpath=%2Faudio&servepath=&absolutepath=.%2FAudioRecordings&streamingport=59120&local=false&username=&password=&sshport=22&hostname=ARGSVCVOIP12& > > > Gonzalo A. Brusella > go...@br... > http://www.brusella.com.ar > > > On Fri, Nov 27, 2009 at 12:22, Gonzalo Brusella <go...@br...>wrote: > >> Hello Again people: >> >> I got a "OrkTrack::Run(): [localhost,8080] success:false >> comment:OrkObjectFactory class does not existinit" error when initializing >> OrkAudio, and it goes into a infinite loop on >> OrkClient.cpp >> >> void OrkTrack::Run(void* args) >> >> Any clue? >> >> >> Gonzalo A. Brusella >> go...@br... >> http://www.brusella.com.ar >> >> > |