How to set the element&#39;s properties in C using g_object_set():<div><br></div><div>I would like to set the properties of x264enc element as</div><div>x264enc tune=zerolatency byte-stream=true bitrate=300   </div><div><br>
</div><div>I have used this code I am getting the warning:</div><div>g_object_set (videoenc, &quot;tune&quot;,&quot;zerolatency&quot;,&quot;byte-stream&quot;,TRUE,&quot;bitrate&quot;,300,NULL);</div><div><br></div>
<div>GLib-GObject-WARNING **: value &quot;((GstX264EncTune) Zero latency (requires constant framerate) | 134519424)&quot; of type `GstX264EncTune&#39; is invalid or out of range for property `tune&#39; of type `GstX264EncTune</div>
<div><br></div><div>  I would like to set the properties of  udpsink :</div><div><br></div><div>  I have used this code and getting warning:</div><div><div> </div><div>  rtpsink = gst_element_factory_make (&quot;udpsink&quot;, &quot;rtpsink&quot;);</div>
<div>  g_assert (rtpsink);</div><div><br></div><div>  g_object_set (rtpsink, &quot;port&quot;, 5000,&quot;host&quot;, DEST_HOST, NULL);</div><div>  g_object_set(rtpsink,&quot;ts-offset&quot;,VOFFSET,NULL);</div><div><br></div>
<div><br></div><div>  GLib-GObject-WARNING **: g_object_set_valist: object class `GstUDPSink&#39; has no property named `127.0.0.1&#39;</div></div><div><br></div><div>  Please some one reply me what I need to change that all work fine.</div>
<div><br></div><div>  Thanks in advance.</div><div><br></div><div><br></div>