Is this correct that my 'encoder' class must implement the following functions:<br><br>  // redefined virtual functions:<br>  virtual void doGetNextFrame();<br>  virtual void doStopGettingFrames();<br><br><br><div class="gmail_quote">
On Mon, Mar 14, 2011 at 8:39 PM, Ross Finlayson <span dir="ltr"><<a href="mailto:finlayson@live555.com">finlayson@live555.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Thanks. Do I need to return "new" H263plusVideoRTPSink instance (instead of framer) from createNewStreamSource?<br>
</blockquote>
<br></div>
No, your implementation of the "createNewStreamSource()" virtual function would return an instance of your 'encoder' class.<br>
<br>
Your implementation of the "createNewRTPSink()" virtual function would return an instance of "H263plusVideoRTPSink", just by calling<br>
        H263plusVideoRTPSink::createNew( ... );<br>
<br>
As I noted earlier, you should not need to deal with "H263plusVideoStreamFramer" at all.<div><div></div><div class="h5"><br>
-- <br>
<br>
Ross Finlayson<br>
Live Networks, Inc.<br>
<a href="http://www.live555.com/" target="_blank">http://www.live555.com/</a><br>
_______________________________________________<br>
live-devel mailing list<br>
<a href="mailto:live-devel@lists.live555.com" target="_blank">live-devel@lists.live555.com</a><br>
<a href="http://lists.live555.com/mailman/listinfo/live-devel" target="_blank">http://lists.live555.com/mailman/listinfo/live-devel</a><br>
</div></div></blockquote></div><br>