<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'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't understand the following(stfu.c:128) :<br>
<br>if (track[index] > most) {<br> most = index;<br> }<br><br>What is the point of comparing the frequency of occurrence with an index? Maybe it should be:<br><br> if (track[index] > track[most]) {<br>
most = index;<br>
}<br><br>Best regards.<br>Vassil<br>
</div>