The reason why you're stream doesn't work in Quicktime is because QuickTime expects something called SDP Parameters - its text that describes the stream, and in the case of H.264,<br>Quicktime looks into this SDP list to find the SPS and PPS information (See RFC Spec section on sprop parameters)<br>
<br>You will have to parse your H.264 file, find the SPS and PPS Nal units, (usually they're the first two units in the stream) and according to the RFC Spec, base64 encode and append it to your SDP Parameters<br>You should be implementing this i think in H264VideoRTPSink.cpp<br>
<br>Also, i didn't see any FU-A framing in your parser...are your NAL units sub MTU size?<br><br>Jerry<br>