<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><blockquote type="cite"><font><b style="font-family:'comic sans ms',sans-serif;font-size:small"><span class="Apple-style-span" style="border-collapse:collapse;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px"><div style="font-weight:normal">i try'ed calculating the bit/byte rate using the method mentioned below´ as</div><div><br></div><div><div>int o1=videoSink->octetCount();</div>

<div><span class="Apple-tab-span" style="white-space:pre">      </span></div><div><span class="Apple-tab-span" style="white-space:pre">     </span>videoSink->startPlaying(*videoSource, afterPlaying, videoSink);</div></div></span></b><font class="Apple-style-span" color="#222222" face="arial, sans-serif"><b><br>

</b></font></font><span class="Apple-style-span" style="font-family:'comic sans ms',sans-serif"><b><span class="Apple-style-span" style="border-collapse:collapse;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px"><div style="display:inline!important">

<div style="display:inline!important">int o2=videoSink->octetCount();</div></div></span></b></span><div><font class="Apple-style-span" color="#222222" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse:collapse"><b><br>

</b></span></font></div><div><font class="Apple-style-span" color="#222222" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse:collapse"><b>At both times the value of o1 and o2 are zero.</b></span></font></div></blockquote><div><br></div>That's because the call to "startPlaying()" merely sets up the objects to handle streaming.  The actual streaming (reception) doesn't happen until later, when you enter the event loop.</div><div><br></div><div>If you instead check "videoSink->octetCount()" inside the "afterPlaying()" function - i.e., after the streaming has completed, then you'll see a non-zero count.</div><br><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>