[Live-devel] DeviceSource question

2009-04-27 Thread Bartha Adam
Hello All, I am trying to implement a DeviceSource, based on the: http://www.live555.com/liveMedia/doxygen/html/DeviceSource_8cpp-source.html My doGetNextFrame() methode is called once, at the beginning, when no data is available. In this case, based on the comments in the sample file, the doGe

Re: [Live-devel] DeviceSource question

2008-05-27 Thread Ishwar . Jasuja
se <[EMAIL PROTECTED]> To LIVE555 Streaming Media - development & use <[EMAIL PROTECTED]> cc Subject Re: [Live-devel] DeviceSource question You can't call "LIVE555 Streaming Media" library code from within your separate encoder thread. However, what you can do

Re: [Live-devel] DeviceSource question

2008-05-23 Thread Ross Finlayson
You can't call "LIVE555 Streaming Media" library code from within your separate encoder thread. However, what you can do is have your encoder thread use a global variable to signal an event that gets handled by the LIVE555 code's event loop (running in its own thread). One easy way to do this

[Live-devel] DeviceSource question

2008-05-23 Thread Ishwar . Jasuja
Hi, I am trying to use DeviceSource Model (as recommended by Ross )to stream the live video out. Unfortunately, the video encoder can not be treated as a socket in the system that I have. I HAVE to run encoder as a separate thread. So only option that I have, is to register a callback functio