<div dir="ltr">Hi list,<br><br>I asked Anthony about this in IRC, but he seemed to be quite busy at cluecon and I really don&#39;t understand how this works. <br><br>If I understand correctly, the function stfu_n_measure_interval tries to estimate what the difference between timestamps of two consecutive RTP packets should be and records the frequency of occurrence? I don&#39;t understand the following(stfu.c:128) :<br>
<br>if (track[index] &gt; most) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; most = index;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br>What is the point of comparing the frequency of occurrence with an index? Maybe it should be:<br><br>&nbsp;if (track[index] &gt; track[most]) {<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; most = index;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br><br>Best regards.<br>Vassil<br>
</div>