Re: [Live-devel] [External] Re: Randomly I Frame missed for high bitrate cameras

2024-01-03 Thread R, Ranjith via live-devel
--- Begin Message ---
Hi Ross,

As per your suggestion I tried increasing the socket buffer size, still we 
observe the same issue.

This is the command used in OpenRTSP, OpenRTSP.exe -v -b 100 -B 100 -P 
60 

I added logs in line 616 in "MultiFramedRTPSource.cpp" that is inside 
"ReorderingPacketBuffer::releaseUsedPacket" function, but these logs did not 
came in console.

Please share your input.

Thanks and Regards,
Ranjith

-Original Message-
From: R, Ranjith
Sent: Friday, December 22, 2023 8:49 PM
To: LIVE555 Streaming Media - development & use 
Subject: RE: [External] Re: [Live-devel] Randomly I Frame missed for high 
bitrate cameras

Hi Ross,

Thanks for your reply.

I will check the option suggested by you and also inform the device team about 
slicing the larger key frame.


Regards,
Ranjith

-Original Message-
From: live-devel  On Behalf Of Ross Finlayson
Sent: Friday, December 22, 2023 4:14 AM
To: LIVE555 Streaming Media - development & use 
Subject: [External] Re: [Live-devel] Randomly I Frame missed for high bitrate 
cameras

WARNING: This message has originated from an External Source. This may be a 
phishing email that can result in unauthorized access to Honeywell systems. 
Please use proper judgment and caution when opening attachments, clicking 
links, scanning QR codes, or responding.

I suspect that - despite the fact that you see no packet loss in the traffic 
'over the wire' - you are experiencing packet loss inside your (i.e., the 
receiver's) OS.  I.e., the receiver's OS is dropping incoming packets before 
delivering them to the receiving application (your RTSP client, or "openRTSP"). 
 You can check this by testing whether you ever get to line 616 in 
"MultiFramedRTPSource.cpp".  If you do, then you are seeing a lost packet.

The problem is likely due to the OS not having enough internal buffering for 
delivering incoming packets.  "openRTSP" is set up to automatically tell the OS 
to buffer at least as much as the output file buffer size (your "-b" option); 
see lines 770-780 in "testProgs/playCommon.cpp".  You can, if you wish, specify 
an even larger OS buffer size using the "-B" (i.e., capital-B) option - e.g., 
"-B 100".

HOWEVER, your real problem is your IP camera: It is sending key frames as 
single H.264/H.265 NAL units that are much, much too large for video streaming. 
 I have explained this several times on this mailing list; most recently here:
http://lists.live555.com/pipermail/live-devel/2023-June/022334.html

You should reconfigure your IP cameras to not send each key frame as a single 
NAL unit, but instead as multiple 'slice' NAL units.  Then, your video won't be 
as sensitive to packet loss.  (Please don't claim that you can't 
reconfigure/fix your IP cameras; you can.  They (unlike the LIVE555 software) 
are things that you have paid for.  If your IP cameras aren't doing what you 
want, you need to tell the manufacturer to fix them.)


Ross Finlayson
Live Networks, Inc.
http://www.live555.com/


___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

--- End Message ---
___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel


Re: [Live-devel] [External] Re: Randomly I Frame missed for high bitrate cameras

2024-01-03 Thread Ross Finlayson


> On Jan 4, 2024, at 12:43 AM, R, Ranjith via live-devel 
>  wrote:
> 
> 
> Please share your input.

Did you do the following, as I advised:


> HOWEVER, your real problem is your IP camera: It is sending key frames as 
> single H.264/H.265 NAL units that are much, much too large for video 
> streaming.  I have explained this several times on this mailing list; most 
> recently here:
>http://lists.live555.com/pipermail/live-devel/2023-June/022334.html
> 
> You should reconfigure your IP cameras to not send each key frame as a single 
> NAL unit, but instead as multiple 'slice' NAL units.  Then, your video won't 
> be as sensitive to packet loss.  (Please don't claim that you can't 
> reconfigure/fix your IP cameras; you can.  They (unlike the LIVE555 software) 
> are things that you have paid for.  If your IP cameras aren't doing what you 
> want, you need to tell the manufacturer to fix them.)


Ross Finlayson
Live Networks, Inc.
http://www.live555.com/


___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel


Re: [Live-devel] [External] Re: Randomly I Frame missed for high bitrate cameras

2024-01-03 Thread R, Ranjith via live-devel
--- Begin Message ---
Hi Ross,

I am yet to ask the device team to check that part, before that I want to 
confirm by increasing the socket buffer size(and working) or see some error 
logs in Live555 layer where the packets are dropped(because of high key frame 
size).

Thanks and Regards,
Ranjith

-Original Message-
From: live-devel  On Behalf Of Ross Finlayson
Sent: Wednesday, January 3, 2024 5:44 PM
To: LIVE555 Streaming Media - development & use 
Subject: Re: [Live-devel] [External] Re: Randomly I Frame missed for high 
bitrate cameras



> On Jan 4, 2024, at 12:43 AM, R, Ranjith via live-devel 
>  wrote:
>
>
> Please share your input.

Did you do the following, as I advised:


> HOWEVER, your real problem is your IP camera: It is sending key frames as 
> single H.264/H.265 NAL units that are much, much too large for video 
> streaming.  I have explained this several times on this mailing list; most 
> recently here:
>http://lists.live555.com/pipermail/live-devel/2023-June/022334.html
>
> You should reconfigure your IP cameras to not send each key frame as a single 
> NAL unit, but instead as multiple 'slice' NAL units.  Then, your video won't 
> be as sensitive to packet loss.  (Please don't claim that you can't 
> reconfigure/fix your IP cameras; you can.  They (unlike the LIVE555 software) 
> are things that you have paid for.  If your IP cameras aren't doing what you 
> want, you need to tell the manufacturer to fix them.)


Ross Finlayson
Live Networks, Inc.
http://www.live555.com/


___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

--- End Message ---
___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel


Re: [Live-devel] [External] Re: Randomly I Frame missed for high bitrate cameras

2024-01-03 Thread dan_desjardins
I apologize if this doesn't make sense in your implementation, but if the 
device mfg does not have (or want to give you) a way to slice large packets - 
another approach might be to set the compression on the camera much higher. 
I've not run into a camera or encoder that does not have some form of 
adjustable compression setting.  This usually affects the size (and quality) of 
the I-Frames - resulting in smaller packets carrying them. While it will likely 
degrade the quality of the stream images, and possibly introduce some other 
unwanted artifacts, it may be your only possible recourse.

-Original Message-
From: live-devel  On Behalf Of R, Ranjith 
via live-devel
Sent: Wednesday, January 3, 2024 6:43 AM
To: LIVE555 Streaming Media - development & use 
Cc: R, Ranjith 
Subject: Re: [Live-devel] [External] Re: Randomly I Frame missed for high 
bitrate cameras

___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel


Re: [Live-devel] [External] Re: Randomly I Frame missed for high bitrate cameras

2024-01-03 Thread R, Ranjith via live-devel
--- Begin Message ---
Hi Dan ,

I understand that increasing the compression rate will reduce the data size and 
issue may not occur.

As you said it will affect the quality of the image or decoding may take more 
time.

But I want to confirm where in Live555 code where the packet is getting 
discarded because of higher data size, even I increased the socket buffer 
size(200) still the issue exist.

One difference I see with this camera is for every I frame it is sending SDP 
parameters(SPS, PPS, SEI), whether that can cause any problem not sure.

Thanks and Regards,
Ranjith

-Original Message-
From: dan_desjardins 
Sent: Wednesday, January 3, 2024 6:36 PM
To: LIVE555 Streaming Media - development & use 
Cc: R, Ranjith 
Subject: RE: [Live-devel] [External] Re: Randomly I Frame missed for high 
bitrate cameras

[You don't often get email from dan.desjard...@videstra.com. Learn why this is 
important at https://aka.ms/LearnAboutSenderIdentification ]

I apologize if this doesn't make sense in your implementation, but if the 
device mfg does not have (or want to give you) a way to slice large packets - 
another approach might be to set the compression on the camera much higher. 
I've not run into a camera or encoder that does not have some form of 
adjustable compression setting.  This usually affects the size (and quality) of 
the I-Frames - resulting in smaller packets carrying them. While it will likely 
degrade the quality of the stream images, and possibly introduce some other 
unwanted artifacts, it may be your only possible recourse.

-Original Message-
From: live-devel  On Behalf Of R, Ranjith 
via live-devel
Sent: Wednesday, January 3, 2024 6:43 AM
To: LIVE555 Streaming Media - development & use 
Cc: R, Ranjith 
Subject: Re: [Live-devel] [External] Re: Randomly I Frame missed for high 
bitrate cameras

___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

--- End Message ---
___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel


Re: [Live-devel] [External] Re: Randomly I Frame missed for high bitrate cameras

2024-01-03 Thread Ross Finlayson


> On Jan 4, 2024, at 8:24 PM, R, Ranjith via live-devel 
>  wrote:
> 
> But I want to confirm where in Live555 code where the packet is getting 
> discarded

Packets are not being discarded anywhere in the LIVE555 code.  Note that a 
LIVE555-based server simply sits in a loop, writing a sequence of RTP packets 
to a socket.  And a LIVE555-based receiver simply sits in a loop, reading a 
sequence of RTP packets from a socket.

In other words, there is nothing in the LIVE555 code that can possibly be 
‘losing’ packets.  If you are seeing packet loss between a LIVE555-based server 
and a LIVE555-based client, then it *must* be happening between these two 
sockets (server socket and client socket) - not in the LIVE555 code.

I.e., if your server and client are separated by a network, then any packet 
lost *must* be occurring on the network, or in the operating system that’s 
underneath the server’s socket, or in the operating system that’s underneath 
the receiver’s socket.

If your server and client are running on the same computer (either on the same 
(real or virtual) machine, or in different virtual machines), then any packet 
lost *must* be occurring within the computer’s operating system (including 
perhaps its virtualization implementation).


Ross Finlayson
Live Networks, Inc.
http://www.live555.com/


___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel