From c6cf598774810fdf45f325a8b5cb083884a13e6d Mon Sep 17 00:00:00 2001 From: MediaPipe Team Date: Mon, 9 Jan 2023 09:52:04 -0800 Subject: [PATCH] Minor fix for max_queue_size documentation PiperOrigin-RevId: 500738798 --- mediapipe/framework/calculator.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/framework/calculator.proto b/mediapipe/framework/calculator.proto index 7c5e8b144..eecd033c9 100644 --- a/mediapipe/framework/calculator.proto +++ b/mediapipe/framework/calculator.proto @@ -382,7 +382,7 @@ message CalculatorGraphConfig { // is empty and no other nodes are running (to prevent possible deadlocks due // to a incorrectly specified value). This global parameter is set to 100 // packets by default to enable pipelining. If any node indicates that it - // buffers packets before emitting them, then the max(node_buffer_size, + // buffers packets before emitting them, then the max(buffer_size_hint, // max_queue_size) is used. Set this parameter to -1 to disable throttling // (i.e. the graph will use as much memory as it requires). If not specified, // the limit is 100 packets.