Re: [Live-devel] [live-devel] memory leak using scheduledelayedtask

2020-05-11 Thread Ross Finlayson
Once again, you’re going to have to figure this out yourself. In particular, you should check: - What happens if you use the unmodified “LIVE555 Proxy Server” code? - What happens if your application contains only the code that you’ve shown below (without *any* “LIVE555 Proxy Serv

[Live-devel] [live-devel] memory leak using scheduledelayedtask

2020-05-11 Thread Siddhant Agarwal
Hi, I am using scheduleDelayedTask to execute a function dummytask repeatedly. Code: void dummytask() { . . . env->taskScheduler().scheduleDelayedTask(uSecsToDelay, (TaskFunc*)dummyTask, NULL); } int main() { . . . dummytask(); env->taskScheduler().doEve

Re: [Live-devel] Is memmove() necessary when using blocking call?

2020-05-11 Thread Avramoni, Sorin
Ok, thanks for the answer! Sorin. From: live-devel on behalf of Ross Finlayson Sent: Monday, May 11, 2020 12:41:18 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] Is memmove() necessary when using blocking call? > On May 11, 202

Re: [Live-devel] How to send extra data linked to frames of a RTSP stream?

2020-05-11 Thread Ross Finlayson
> On May 12, 2020, at 9:32 AM, Matthew Czarnek wrote: > > I would like to send some small pieces of data that is associated with a RTSP > packet alongside the packet within the stream. > > I see that RTSP supports subtitles, is it possible to use subtitles to send > information associated wi

[Live-devel] How to send extra data linked to frames of a RTSP stream?

2020-05-11 Thread Matthew Czarnek
I would like to send some small pieces of data that is associated with a RTSP packet alongside the packet within the stream. I see that RTSP supports subtitles, is it possible to use subtitles to send information associated with a frame to the client? I'm seeing a few 15 year old posts about live5

Re: [Live-devel] Is memmove() necessary when using blocking call?

2020-05-11 Thread Ross Finlayson
> On May 11, 2020, at 9:19 PM, Avramoni, Sorin wrote: > > I am wonder since I have a blocking mechanism it is possible to not use > memmove() and just use a reference to my buffers? Generally speaking, no, because the data in your buffer is not the only data that gets sent in a RTP packet.

[Live-devel] Is memmove() necessary when using blocking call?

2020-05-11 Thread Avramoni, Sorin
Hi, So far I managed to successfully stream h264/h265 video, jpeg, audio and text using live555 from my video and audio encoders at the same time. I created a class that inherits FramedSource () and I am using event trigger to signal new frames from my threads and I implemented a mechanism wit