<div dir="ltr">Hi All.<div><br></div><div>I want to know if it is right to modify the status of a pipeline within a callback. </div><div>The application works but I'm not sure if it can cause a problem in the future.<br></div><div><br></div><div>e.g.</div><div><br></div><div>...</div><div><div>GstPad *pad = gst_element_get_static_pad(videoScr, "src");</div><div>g_signal_connect(pad, "notify::caps", G_CALLBACK(video_changed), NULL);</div></div><div>...</div><div><br></div><div>video_changed<br></div><div>{</div><div>...</div><div>gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PAUSED);<br></div><div>...</div><div>}<br></div><div><br></div><div>Regards!</div></div>