GstKinesisWebRTC/Description/Signals: Difference between revisions

From RidgeRun Developer Wiki
No edit summary
mNo edit summary
Line 1: Line 1:


<noinclude>
<noinclude>
{{GstKinesisWebRTC/Head|previous=|next=|}}
{{GstKinesisWebRTC/Head|previous=Description/Properties|next=Evaluating GstKinesisWebRTC}}
</noinclude>
</noinclude>


Line 24: Line 24:




*'''secret-key''': triggered during the element execution start to get the AWS secret key,  if not provided for the other means. You must return the string containing your secret key.
*'''secret-key''': triggered during the element execution start to get the AWS secret key,  if not provided for the other means. You must return the string containing your secret key.
<pre>
<pre>
gchararray user_function (GstElement* object, gpointer user_data);
gchararray user_function (GstElement* object, gpointer user_data);
Line 31: Line 31:


<noinclude>
<noinclude>
{{GstKinesisWebRTC/Foot||}}
{{GstKinesisWebRTC/Foot|Description/Properties|Evaluating GstKinesisWebRTC}}
</noinclude>
</noinclude>

Revision as of 17:25, 12 October 2022




Previous: Description/Properties Index Next: Evaluating GstKinesisWebRTC





  • peer-connected: triggered when a new peer connection is established.
void peer_connected  (GstElement* object, gchar* peer_id, gpointer user_data);


  • peer-disconnected: triggered when a peer disconnects.
void user_function (GstElement* object, gchar * peer_id, gpointer user_data);


  • access-key: triggered during the element execution start to get the AWS access key ID, if not provided for the other means. You must return the string containing your access key.
gchararray user_function (GstElement* object, gpointer user_data);


  • secret-key: triggered during the element execution start to get the AWS secret key, if not provided for the other means. You must return the string containing your secret key.
gchararray user_function (GstElement* object, gpointer user_data);



Previous: Description/Properties Index Next: Evaluating GstKinesisWebRTC