diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2014-03-11 21:46:14 +0100 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2014-03-11 21:50:36 +0100 |
commit | 4a38acaa1042668f71bbdffab109b8f4a2eb00b6 (patch) | |
tree | f68c709adaa418f799dd0e595ad08931636173aa /gst/gstpad.h | |
parent | 6d20be1702e8c5a029126d2af4c0b4294efd8d74 (diff) |
pad: add debug helper for GstPadLinkReturn names
Add a helper like gst_flow_get_name() for GstPadLinkReturn. Use this in core.
API: gst_pad_link_get_name()
Diffstat (limited to 'gst/gstpad.h')
-rw-r--r-- | gst/gstpad.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/gstpad.h b/gst/gstpad.h index 140ed9788..f84d0f404 100644 --- a/gst/gstpad.h +++ b/gst/gstpad.h @@ -179,8 +179,9 @@ typedef enum { GST_FLOW_CUSTOM_ERROR_2 = -102 } GstFlowReturn; -const gchar* gst_flow_get_name (GstFlowReturn ret); -GQuark gst_flow_to_quark (GstFlowReturn ret); +const gchar* gst_flow_get_name (GstFlowReturn ret); +GQuark gst_flow_to_quark (GstFlowReturn ret); +const gchar* gst_pad_link_get_name (GstPadLinkReturn ret); /** * GstPadLinkCheck: |