Hello,<br><br>I&#39;m trying to developpe a MJPEG live streamer server.<br>I work with a camera and our specific driver (that I&#39;ve wrote too) for our frame grabber.<br>To do this I&#39;ve learned about Elphel example.<br>
I&#39;ve wrote a JPEGVideoSource derivated class then I&#39;ve overload the doGetNextFrame function.<br><br>Now I can see remotely live JPEG video from camera with a VLC client program.<br>But I&#39;ve observe a delay of 2 sec between images received by the driver and those received by VLC client.
<br>It seem there is a too big fifo buffer for live image between them.<br>I&#39;ve disable our fifo buffer to see what&#39;s happened.<br>Now I copy directly image (30 kB) to FramedSource::fTo data members.<br>But the problem is always present.
<br><br>How can I reduce this delay?<br><br>Thanks in advance for your help...<br><br>