<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>Hi there,</p>
<p>I am trying to integrate live555 on an environment where the video source is a MPEG(h264) flow.</p>
<p>So, I decided to use an easy way to get this MPEG video by:</p>
<p>1- Create a MediaSink to link with the resource.</p>
<p>2- A SimpleRTPSource.</p>
<p><br>
</p>
<p>Until here all was ok, I am getting in afterGettingFrame the correct MPEG data( I checked that by creating a file with all the data received and then by playing on VLC).</p>
<p><br>
</p>
<p>My problem is  to get the H264 video to be treated. Taking a look on the examples, I though I could do it by using a MPEG1or2Demux and then get the VideoStream by newVideoStream. The surprise was I got exactly the same MPEG file that I got previously(when
 dont use <span style="font-size: 12pt;">MPEG1or2Demux).</span></p>
<p><span style="font-size: 12pt;"><br>
</span></p>
<p><span style="font-size: 12pt;">My code looks like:</span></p>
<p><br>
</p>
<blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;">
<p>sessionState.source = SimpleRTPSource::createNew(*env, &rtpGroupsock, 33, 90000, "video/MP2T", 0, False /*no 'M' bit*/);</p>
<p><span style="font-size: 12pt;">MPEG1or2Demux *</span>mpegDemux = MPEG1or2Demux::createNew(*env, fileSource);</p>
<p> FramedSource* videoES = mpegDemux->newVideoStream();</p>
<p>videoSink->startPlaying(*videoSource, afterPlaying, NULL);</p>
</blockquote>
<p><br>
</p>
<p>And then I still receiving MPEG in <span style="font-size: 12pt;">afterGettingFrame instead of h264 frames as I wanted.</span></p>
<p><span style="font-size: 12pt;"><br>
</span></p>
<p><span style="font-size: 12pt;">I am not sure If I am doing something bad or I assumed I can do this with live555 but that is not possible.</span></p>
<p><span style="font-size: 12pt;">Is there a way to get the H264 video part from a MPEG flow in live555?</span></p>
<p><span style="font-size: 12pt;"><br>
</span></p>
<p><span style="font-size: 12pt;">Many thanks in advance.</span></p>
<p><span style="font-size: 12pt;">Regards.</span></p>
</div>
</body>
</html>