Re: [Live-devel] how to use H264or5VideoRTPSink

2017-01-12 Thread Ross Finlayson
I suspect that your problem is that you are not using the correct ‘framer’ class for your H.264 video ‘frames’ (in reality, H.264 NAL units). Look at your implementation of the “createNewStreamSource()” virtual function (in your “OnDemandServerMediaSubsession” subclass). Because your data sourc

Re: [Live-devel] how to make latency as low as possible

2017-01-12 Thread Ross Finlayson
Your data source class (“FramedSource” subclass) looks mostly OK; however, I suspect that your problem is that you are not using the correct ‘framer’ class for your H.264 video ‘frames’ (in reality, H.264 NAL units). Look at your implementation of the “createNewStreamSource()” virtual function

[Live-devel] how to use H264or5VideoRTPSink

2017-01-12 Thread Roland Aigner
Hi all, I've got a few beginner questions: I'm trying to stream H264/H265 encoded live video via RTP/RTCP. For this, I'm trying to build upon your testOnDemandRTSPServer sample, since it best fits my needs. I saw that you prepared a dummy class DeviceSource, apparently for the purpose of impl