From 8aceccd496acfe455f62874a9b4853f9718a3f68 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 1 Apr 2021 11:53:54 -0400 Subject: [PATCH] improve the message when max video packets is exceeded --- src/zm_packetqueue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_packetqueue.cpp b/src/zm_packetqueue.cpp index c6bc273e1..0350d85ad 100644 --- a/src/zm_packetqueue.cpp +++ b/src/zm_packetqueue.cpp @@ -90,7 +90,7 @@ bool PacketQueue::queuePacket(ZMPacket* add_packet) { if (add_packet->packet.stream_index == video_stream_id) { if ((max_video_packet_count > 0) and (packet_counts[video_stream_id] > max_video_packet_count)) { - Warning("You have set the video packets in the queue to %u." + Warning("You have set the max video packets in the queue to %u." " The queue is full. Either Analysis is not keeping up or" " your camera's keyframe interval is larger than this setting." " We are dropping packets.", max_video_packet_count);