mirror of
https://github.com/go-gst/go-gst.git
synced 2025-09-26 20:11:18 +08:00
Merge pull request #157 from m1k1o/fix/debug-graph-show-full-params
Fix DebugGraphShowFullParams typo
This commit is contained in:
@@ -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.
|
||||
|
Reference in New Issue
Block a user