Thanks. Do I need to return "new" H263plusVideoRTPSink instance (instead of framer) from createNewStreamSource? How do I create it?<br><br>FramedSource* MyH263plusVideoMediaSubsession<br>::createNewStreamSource(unsigned /*clientSessionId*/, unsigned& estBitrate) {<br>
  estBitrate = 500; // kbps, estimate ??<br><br>  // Create the video source:<br>  mySource = DeviceSource::createNew(envir(), this);<br>  if (mySource == NULL) return NULL;<br><br>  // Create a framer for the Video Elementary Stream:<br>
  return H263plusVideoStreamFramer::createNew(envir(), mySource);<br>}<br><br><br><div class="gmail_quote">On Mon, Mar 14, 2011 at 5:37 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;">

My encoder outputs one encoded frame at a time and I need to pass this data to H263plusVideoRTPSink. Do I need to use H263plusVideoStreamFramer?<br>
</blockquote>
<br></div>
No, in this case you should be able to feed your encoder object directly into your "H263plusVideoRTPSink".  Note, however, that your encoder object *must* set proper "fPresentationTime" and "fDurationInMicroseconds" values for each frame that you deliver.<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>