-
Notifications
You must be signed in to change notification settings - Fork 182
[Edge] Add custom property #4700
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Add custom property for edgesrc/edgesink. , separated options are set on the edge handle. Signed-off-by: Gichan Jang <gichan2.jang@samsung.com>
4bec645
to
9f3b472
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Add a usage example of the custom property on the boilerplate.
E.g.,:
Lines 13 to 30 in 3ba5b6c
/** | |
* SECTION:element-join | |
* @see_also #GstInputSelector | |
* @note A join has reduced and changed input-selector's function. | |
* | |
* Connect recently arrived buffer from N input streams to the output pad. | |
* N streams should not operate at the same time. | |
* All capabilities (input stream i and output stream) should be the same. | |
* For example, If one sinkpad is receiving buffer, the others should be stopped. | |
* <refsect2> | |
* <title>Example launch line</title> | |
* gst-launch-1.0 ... (input stream 0) ! join.sink_0 \ | |
* ... (input stream 1) ! join.sink_1 \ | |
* ... \ | |
... (input stream N) ! join.sink_n \ | |
join name=join ! (arrived input stream) ... | |
* </refsect2> | |
*/ |
nns_loge ("Failed to connect to edge device!"); | ||
return FALSE; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a bugfix, unrelated with this topic?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Regression with edge-connection. (unittest fail due to this change)
Add custom property for edgesrc/edgesink.
, separated options(key:value) are set on the edge handle.
Self evaluation: