<div dir="ltr">created this  simple pipeline in C  <div> audiotestsrc is-live=true ! audiomixer  ! audioconvert </div><div><br><div>I have synced  pipeline clock using external ntp clock </div></div><div> </div><div><div style="color:rgb(255,255,255);background-color:rgb(0,0,0);font-family:Consolas,"Courier New",monospace;font-size:14px;line-height:19px;white-space:pre"><div>  <span style="color:rgb(220,220,170)">gst_element_set_base_time</span>(gst_pipe, <span style="color:rgb(181,206,168)">0</span>);</div><div>  <span style="color:rgb(220,220,170)">gst_element_set_start_time</span>(gst_pipe, GST_CLOCK_TIME_NONE);</div><div>  net_clock <span style="color:rgb(212,212,212)">=</span> <span style="color:rgb(220,220,170)">gst_net_client_clock_new</span>(<span style="color:rgb(86,156,214)">NULL</span>, clock_host, clock_port, <span style="color:rgb(181,206,168)">0</span>);</div><div>  <span style="color:rgb(124,166,104)">/* Wait until the local clock synchronises to the master */</span></div><div>  <span style="color:rgb(220,220,170)">gst_clock_wait_for_sync</span>(net_clock, GST_CLOCK_TIME_NONE);</div><div>  <span style="color:rgb(220,220,170)">g_print</span>(<span style="color:rgb(206,145,120)">"Network clock is synched to master</span><span style="color:rgb(86,156,214)">\n</span><span style="color:rgb(206,145,120)">"</span>);</div><div>  <span style="color:rgb(220,220,170)">gst_pipeline_use_clock</span>(gstpipline, net_clock);</div></div></div><div>this is the code for syncing clock<br></div><div>when I remove the above code I can here the audio. but I cannot here the audio when the clock is synced</div><div><br></div><div><br></div></div>