From 43e46b3fdaaf2d0ff57ad9783c439a88922dc362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sat, 14 Dec 2024 15:19:56 +0100 Subject: [PATCH] fix DebugGraphShowFullParams typo. --- gst/gst_bin.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gst/gst_bin.go b/gst/gst_bin.go index d0d6ae5..772ec57 100644 --- a/gst/gst_bin.go +++ b/gst/gst_bin.go @@ -291,9 +291,12 @@ const ( DebugGraphShowCapsDetails DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS // (2) – show caps-details on edges DebugGraphShowNonDefaultParams DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS // (4) – show modified parameters on elements DebugGraphShowStates DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_STATES // (8) – show element states - DebugGraphShowPullParams DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_FULL_PARAMS // (16) – show full element parameter values even if they are very long + DebugGraphShowFullParams DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_FULL_PARAMS // (16) – show full element parameter values even if they are very long DebugGraphShowAll DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_ALL // (15) – show all the typical details that one might want DebugGraphShowVerbose DebugGraphDetails = C.GST_DEBUG_GRAPH_SHOW_VERBOSE // (4294967295) – show all details regardless of how large or verbose they make the resulting output + + // Deprecated: Use DebugGraphShowFullParams instead as this was just a typo. + DebugGraphShowPullParams = DebugGraphShowFullParams ) // DebugBinToDotData will obtain the whole network of gstreamer elements that form the pipeline into a dot file.