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
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
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
> 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
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
> 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.
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