Re: [Live-devel] Retrieving buffers of data from an RTSP derived stream

2023-11-28 Thread Ross Finlayson
> 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

Re: [Live-devel] Cleaning up objects

2023-11-28 Thread Andy Hawkins
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

Re: [Live-devel] Retrieving buffers of data from an RTSP derived stream

2023-11-28 Thread Andy Hawkins
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

Re: [Live-devel] Cleaning up objects

2023-11-28 Thread Ross Finlayson
> 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

Re: [Live-devel] Retrieving buffers of data from an RTSP derived stream

2023-11-28 Thread Ross Finlayson
> 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

[Live-devel] Cleaning up objects

2023-11-28 Thread Andy Hawkins
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 ___

Re: [Live-devel] Retrieving buffers of data from an RTSP derived stream

2023-11-28 Thread Andy Hawkins
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

Re: [Live-devel] Retrieving buffers of data from an RTSP derived stream

2023-11-28 Thread Ross Finlayson
> 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

[Live-devel] Retrieving buffers of data from an RTSP derived stream

2023-11-28 Thread Andy Hawkins
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