> On Nov 29, 2023, at 5:11 AM, Andy Hawkins wrote:
>
> The device receiving the RTSP stream is different to the device that will be
> regenerating it. The stream needs to be passed over a proprietary network
> protocol, which is why I need to be able to capture the raw video / audio
> data a
Perfect, thanks.
Andy
From: live-devel on behalf of Ross
Finlayson
Sent: 28 November 2023 15:58
To: LIVE555 Streaming Media - development & use
Subject: Re: [Live-devel] Cleaning up objects
> On Nov 29, 2023, at 4:04 AM, Andy Hawkins wrote:
>
> The majority of the objects in the library
The device receiving the RTSP stream is different to the device that will be
regenerating it. The stream needs to be passed over a proprietary network
protocol, which is why I need to be able to capture the raw video / audio data
at one end, and then provide it to an RTSP server at the other.
A
> On Nov 29, 2023, at 4:04 AM, Andy Hawkins wrote:
>
> The majority of the objects in the library are created using a static
> 'createNew' method, and have a protected destructor. How should these objects
> be cleaned up once they are finished with? You can't call delete because of
> the pro
> On Nov 29, 2023, at 2:57 AM, Andy Hawkins wrote:
>
> And if I wanted to re-construct an RTSP stream from the SDP definition and
> the buffers of data I've collected from an RTSP client, how would I do that?
Why not use the “LIVE555 Proxy server”, which does exactly this?
http://liv
The majority of the objects in the library are created using a static
'createNew' method, and have a protected destructor. How should these objects
be cleaned up once they are finished with? You can't call delete because of the
protected destructor.
Thanks
Andy
___
Ah, that makes more sense. Will look at that.
And if I wanted to re-construct an RTSP stream from the SDP definition and the
buffers of data I've collected from an RTSP client, how would I do that?
Thanks again
Andy
From: live-devel on behalf of Ross
Finlayson
Sent: 28 November 2023 11:56
> On Nov 29, 2023, at 12:41 AM, Andy Hawkins wrote:
>
> Hi,
>
> I need to set up an RTSP client, and use a custom buffer class for all of the
> data that is retrieved in order to process it as it comes in. Similarly, I
> need to create a servable RTSP stream, and be able to provide buffers
Hi,
I need to set up an RTSP client, and use a custom buffer class for all of the
data that is retrieved in order to process it as it comes in. Similarly, I need
to create a servable RTSP stream, and be able to provide buffers of data to it.
>From what I can see by tracing through the using the