<div><div>Hi.</div><div><br></div><div><br></div><div>I&#39;ve been written some code to make a H.264 streaming server.</div><div><br></div><div>The server is running on Embedded Device (arm linux).</div><div><br></div><div>
The embedded device has H.264 hardware encoder.</div><div><br></div><div>I attached some code which is initializing the streaming server.</div><div><br></div><div>On the other hands, I used VLC player in Linux version.</div>
<div><br></div><div>I have problems with below code. </div><div><br></div><div>VLC player is possible to access the H.264 streaming server.</div><div><br></div><div><br></div><div><br></div><div>But, H.264 streaming server send a message which is &quot;Reply: RTSP/1.0 461 Unsupported Transport&quot;.</div>
<div><br></div><div>I got a some hint that is &quot;my source code is for H.264 muliticasting streaming server.&quot;</div><div><br></div><div><br></div><div><br></div><div>1. I want to make a Unicast streaming server. I don&#39;t know how to make a Unicast  Streaming server with live555 library.</div>
<div><br></div><div><br></div><div>Would you tell me how to make it?</div><div><br></div><div><br></div><div>I have one more question about H.264 encoding data.</div><div><br></div><div><br></div><div><br></div><div>2.  After H.264 encoding, Do I need another job to send H.264 through RTP/RTSP protocol?</div>
<div><br></div><div><br></div><div><br></div><div>//////////////////////////////////////// log message /////////////////////////////////</div><div><br></div><div>Play this stream using the URL &quot;rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a>&quot;           </div>
<div>Beginning streaming...                                                          </div><div>constructing an x264 StreamFramer:411824  </div></div><div>-------------------------</div><div>///////////////////////////////////////// Main Code ///////////////////////////////////////////////////</div>
<div>  int mServerPort = 8000;</div><div>  mEventLoopController = 0;</div><div>  // Begin by setting up our usage environment:</div><div>  mScheduler = BasicTaskScheduler::createNew();</div><div>  mEnv = BasicUsageEnvironment::createNew(*mScheduler);</div>
<div><br></div><div>  const unsigned estimatedSessionBandwidth = DEFAULT_RTP_BANDWIDTH_KBPS; // in kbps; for RTCP b/w share</div><div>  const unsigned maxCNAMElen = 100;</div><div>  unsigned char CNAME[maxCNAMElen + 1];</div>
<div>  gethostname((char*) CNAME, maxCNAMElen);</div><div>  CNAME[maxCNAMElen] = &#39;\0&#39;; // just in case</div><div>  printf(&quot;gethostname=%s&quot;, CNAME);</div><div><br></div><div>  // Create &#39;groupsocks&#39; for RTP and RTCP:</div>
<div>  const unsigned short rtpPortNum = mServerPort;</div><div>  const unsigned short rtcpPortNum = rtpPortNum + 1;</div><div>  const unsigned char ttl = DEFAULT_RTP_TTL; // low, in case routers don&#39;t admin scope</div>
<div><br></div><div>  struct in_addr destinationAddress;</div><div>  destinationAddress.s_addr = our_inet_addr(&quot;192.168.10.10&quot;); //put in destination IP</div><div>  mRtpPort = new Port(rtpPortNum);</div><div>  mRtcpPort = new Port(rtcpPortNum);</div>
<div><br></div><div>  mRtpGroupsock = new Groupsock(*mEnv, destinationAddress, *mRtpPort, ttl);</div><div>  mRtcpGroupsock = new Groupsock(*mEnv, destinationAddress, *mRtcpPort, ttl);</div><div><br></div><div>  // Create an &#39;H264 Video RTP&#39; sink from the RTP &#39;groupsock&#39;:</div>
<div>  mVideoSenderSink = H264VideoRTPSink::createNew(*mEnv, mRtpGroupsock, 96,</div><div>      0x41, &quot;H264&quot;);</div><div><br></div><div>  // Create (and start) a &#39;RTCP instance&#39; for this RTP sink:</div><div>
  mRtcpInstance = RTCPInstance::createNew(*mEnv, mRtcpGroupsock,</div><div>      estimatedSessionBandwidth, CNAME, mVideoSenderSink, NULL, true);</div><div>  // Note: This starts RTCP running automatically</div><div><br></div>
<div>  RTSPServer* rtspServer = RTSPServer::createNew(*mEnv, 8554);</div><div>  if (rtspServer == NULL)</div><div>    {</div><div>      *mEnv &lt;&lt; &quot;Failed to create RTSP server: &quot; &lt;&lt; mEnv-&gt;getResultMsg() &lt;&lt; &quot;\n&quot;;</div>
<div>      exit(1);</div><div>    }</div><div>  ServerMediaSession* sms = ServerMediaSession::createNew(*mEnv, &quot;testStream&quot;,</div><div>      &quot;embedded&quot;, &quot;embedded&quot;, true);</div><div><br></div>
<div>  sms-&gt;addSubsession(PassiveServerMediaSubsession::createNew(*mVideoSenderSink,</div><div>      mRtcpInstance));</div><div>  rtspServer-&gt;addServerMediaSession(sms);</div><div><br></div><div>  char* url = rtspServer-&gt;rtspURL(sms);</div>
<div>  *mEnv &lt;&lt; &quot;Play this stream using the URL \&quot;&quot; &lt;&lt; url &lt;&lt; &quot;\&quot;\n&quot;;</div><div>  delete[] url;</div><div>  // Finally, start the streaming:</div><div>  *mEnv &lt;&lt; &quot;Beginning streaming...\n&quot;;</div>
<div><br></div><div>  // Create a framer for the Video Elementary Stream:</div><div>  //StreamFramer does not need a source, it gets the AUs from a buffer queue</div><div>  mVideoSenderSource = x264VideoStreamFramer::createNew(*mEnv, NULL);</div>
<div><br></div><div><br></div><div>  mVideoSenderSink-&gt;startPlaying(*mVideoSenderSource, AfterPlaying,</div><div>      mVideoSenderSink);</div><div><br></div><div>  //schedule the dummy task</div><div><br></div><div>  ScheduleDummyTask();</div>
<div><br></div><div>  //does not return until mEvenLoopController = none-zero value</div><div>  mEnv-&gt;taskScheduler().doEventLoop(&amp;mEventLoopController);</div><div>///////////////////////////////////////// Main Code End ///////////////////////////////////////////////////</div>
<div><br></div><div><br></div><div><br></div><div>x264VideoStreamFramer::doGetNextFrame()</div><meta http-equiv="content-type" content="text/html; charset=utf-8"><div><div>{</div><div>  /////// H.264 Encoding ///////////</div>
<div>              ..............</div><div><br></div><div><div>  //////////// the Encoded data -&gt; insert -&gt; buffer ///////////////////////</div><div> ///////////////////////////////////////////////////////////</div>
</div><div>  unsigned char* pInputBuffer = (unsigned char*) encoded_buf;</div><div>  //this is the size of data to be sent</div><div>  unsigned int sizeBytes = encoded_size;</div><div><br></div><div><br></div><div>if (sizeBytes &lt; fMaxSize)</div>
<div>    {</div><div>      memcpy(fTo, pInputBuffer, sizeBytes);</div><div>    }</div><div>  else</div><div>    {</div><div>      //this probably does not work!</div><div>      memcpy(fTo, pInputBuffer, fMaxSize);</div><div>
      fNumTruncatedBytes = sizeBytes - fMaxSize;</div><div>    }</div><div>  fFrameSize = sizeBytes;</div><div>  afterGetting(this);</div><div>}</div></div><div><br></div><div>////////////////////////////////////////////  Packet //////////////////////////////////////////////////////////////////////////////////</div>
<div>192.168.10.4  ( Linux PC / Client)</div><div><div>192.168.10.10 ( Embedded Linux / H.264 Streaming Server )</div></div><div><br></div><div><br></div><div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>      6 2.931202    192.168.10.4          192.168.10.10         TCP      36236 &gt; rtsp-alt [SYN] Seq=0 Win=5840 Len=0 MSS=1460 TSV=29313998 TSER=0 WS=6</div><div>      7 2.931892    192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [SYN, ACK] Seq=0 Ack=1 Win=5792 Len=0 MSS=1460 TSV=1773694 TSER=29313998 WS=1</div>
<div>      8 2.931936    192.168.10.4          192.168.10.10         TCP      36236 &gt; rtsp-alt [ACK] Seq=1 Ack=1 Win=5888 Len=0 TSV=29313999 TSER=1773694</div><div>      9 2.931958    192.168.10.4          192.168.10.10         RTSP     OPTIONS rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0</div>
<div><br></div><div>Frame 9 (202 bytes on wire, 202 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36236 (36236), Dst Port: rtsp-alt (8554), Seq: 1, Ack: 1, Len: 134</div>
<div>Real Time Streaming Protocol</div><div>    Request: OPTIONS rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0\r\n</div><div>        Method: OPTIONS</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a></div>
<div>    CSeq: 1\r\n</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     10 2.932628    192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=1 Ack=135 Win=6864 Len=0 TSV=1773695 TSER=29313999</div><div>     11 2.957192    192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 200 OK</div>
<div><br></div><div>Frame 11 (220 bytes on wire, 220 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.10 (192.168.10.10), Dst: 192.168.10.4 (192.168.10.4)</div><div>Transmission Control Protocol, Src Port: rtsp-alt (8554), Dst Port: 36236 (36236), Seq: 1, Ack: 135, Len: 152</div>
<div>Real Time Streaming Protocol</div><div>    Response: RTSP/1.0 200 OK\r\n</div><div>        Status: 200</div><div>    CSeq: 1\r\n</div><div>    Date: Thu, Jan 01 1970 02:32:48 GMT\r\n</div><div>    Public: OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE, GET_PARAMETER, SET_PARAMETER\r\n</div>
<div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div><div>     12 2.957245    192.168.10.4          192.168.10.10         TCP      36236 &gt; rtsp-alt [ACK] Seq=135 Ack=153 Win=6912 Len=0 TSV=29314024 TSER=1773699</div>
<div>     13 2.957634    192.168.10.4          192.168.10.10         RTSP     DESCRIBE rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0</div><div><br></div><div>Frame 13 (228 bytes on wire, 228 bytes captured)</div>
<div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36236 (36236), Dst Port: rtsp-alt (8554), Seq: 135, Ack: 153, Len: 160</div>
<div>Real Time Streaming Protocol</div><div>    Request: DESCRIBE rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0\r\n</div><div>        Method: DESCRIBE</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a></div>
<div>    CSeq: 2\r\n</div><div>    Accept: application/sdp\r\n</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div> </div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     15 2.997117    192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=153 Ack=295 Win=7936 Len=0 TSV=1773708 TSER=29314025</div><div>     16 3.009620    192.168.10.10         192.168.10.4          RTSP/SDP Reply: RTSP/1.0 200 OK, with session description[Malformed Packet]</div>
<div><br></div><div>Frame 16 (746 bytes on wire, 746 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.10 (192.168.10.10), Dst: 192.168.10.4 (192.168.10.4)</div><div>Transmission Control Protocol, Src Port: rtsp-alt (8554), Dst Port: 36236 (36236), Seq: 153, Ack: 295, Len: 678</div>
<div>Real Time Streaming Protocol</div><div>    Response: RTSP/1.0 200 OK\r\n</div><div>        Status: 200</div><div>    CSeq: 2\r\n</div><div>    Date: Thu, Jan 01 1970 02:32:48 GMT\r\n</div><div>    Content-Base: rtsp://<a href="http://192.168.10.10:8554/testStream/\r\n">192.168.10.10:8554/testStream/\r\n</a></div>
<div>    Content-type: application/sdp</div><div>    Content-length: 508</div><div>    \r\n</div><div>    Session Description Protocol</div><div>        Session Description Protocol Version (v): 0</div><div>        Owner/Creator, Session Id (o): - 9109105913 1 IN IP4 192.168.10.10</div>
<div>            Owner Username: -</div><div>            Session ID: 9109105913</div><div>            Session Version: 1</div><div>            Owner Network Type: IN</div><div>            Owner Address Type: IP4</div><div>
            Owner Address: 192.168.10.10</div><div>        Session Name (s): Session streamed by frank</div><div>        Session Information (i): frank</div><div>        Time Description, active time (t): 0 0</div><div>        Session Attribute (a): tool:LIVE555 Streaming Media v2010.07.29</div>
<div>        Session Attribute (a): type:broadcast</div><div>        Session Attribute (a): control:*</div><div>        Session Attribute (a): source-filter: incl IN IP4 * 192.168.10.10</div><div>        Session Attribute (a): rtcp-unicast: reflection</div>
<div>        Session Attribute (a): range:npt=0-</div><div>        Session Attribute (a): x-qt-text-nam:Session streamed by frank</div><div>        Session Attribute (a): x-qt-text-inf:frank</div><div>        Media Description, name and address (m): video 8000 RTP/AVP 96</div>
<div>        Connection Information (c): IN IP4 <a href="http://192.168.10.10/255">192.168.10.10/255</a></div><div>        Bandwidth Information (b): AS:4500</div><div>        Media Attribute (a): rtpmap:96 H264/90000</div>
<div>        Media Attribute (a): fmtp:96 packetization-mode=1;profile-level-id=000041;sprop-parameter-sets=H264</div><div>[Malformed Packet: SDP]</div><div><br></div><div>Frame (746 bytes):</div><div><br></div><div>0000  00 00 00 01 00 06 00 4a 5c 26 0a 5b 00 00 08 00   .......J\&amp;.[....</div>
<div>0010  45 00 02 da d0 1c 40 00 40 06 d2 a2 c0 a8 0a 0a   E.....@.@.......</div><div>0020  c0 a8 0a 04 21 6a 8d 8c 40 e8 c0 fe 3f 5b c9 0e   ....!j..@...?[..</div><div>0030  80 18 0f 80 76 73 00 00 01 01 08 0a 00 1b 10 8e   ....vs..........</div>
<div>0040  01 bf 4b e9 52 54 53 50 2f 31 2e 30 20 32 30 30   ..K.RTSP/1.0 200</div><div>0050  20 4f 4b 0d 0a 43 53 65 71 3a 20 32 0d 0a 44 61    OK..CSeq: 2..Da</div><div>0060  74 65 3a 20 54 68 75 2c 20 4a 61 6e 20 30 31 20   te: Thu, Jan 01 </div>
<div>0070  31 39 37 30 20 30 32 3a 33 32 3a 34 38 20 47 4d   1970 02:32:48 GM</div><div>0080  54 0d 0a 43 6f 6e 74 65 6e 74 2d 42 61 73 65 3a   T..Content-Base:</div><div>0090  20 72 74 73 70 3a 2f 2f 31 39 32 2e 31 36 38 2e    rtsp://192.168.</div>
<div>00a0  31 30 2e 31 30 3a 38 35 35 34 2f 74 65 73 74 53   10.10:8554/testS</div><div>00b0  74 72 65 61 6d 2f 0d 0a 43 6f 6e 74 65 6e 74 2d   tream/..Content-</div><div>00c0  54 79 70 65 3a 20 61 70 70 6c 69 63 61 74 69 6f   Type: applicatio</div>
<div>00d0  6e 2f 73 64 70 0d 0a 43 6f 6e 74 65 6e 74 2d 4c   n/sdp..Content-L</div><div>00e0  65 6e 67 74 68 3a 20 35 30 38 0d 0a 0d 0a 76 3d   ength: 508....v=</div><div>00f0  30 0d 0a 6f 3d 2d 20 39 31 30 39 31 30 35 39 31   0..o=- 910910591</div>
<div>0100  33 20 31 20 49 4e 20 49 50 34 20 31 39 32 2e 31   3 1 IN IP4 192.1</div><div>0110  36 38 2e 31 30 2e 31 30 0d 0a 73 3d 53 65 73 73   68.10.10..s=Sess</div><div>0120  69 6f 6e 20 73 74 72 65 61 6d 65 64 20 62 79 20   ion streamed by </div>
<div>0130  66 72 61 6e 6b 0d 0a 69 3d 66 72 61 6e 6b 0d 0a   frank..i=frank..</div><div>0140  74 3d 30 20 30 0d 0a 61 3d 74 6f 6f 6c 3a 4c 49   t=0 0..a=tool:LI</div><div>0150  56 45 35 35 35 20 53 74 72 65 61 6d 69 6e 67 20   VE555 Streaming </div>
<div>0160  4d 65 64 69 61 20 76 32 30 31 30 2e 30 37 2e 32   Media v2010.07.2</div><div>0170  39 0d 0a 61 3d 74 79 70 65 3a 62 72 6f 61 64 63   9..a=type:broadc</div><div>0180  61 73 74 0d 0a 61 3d 63 6f 6e 74 72 6f 6c 3a 2a   ast..a=control:*</div>
<div>0190  0d 0a 61 3d 73 6f 75 72 63 65 2d 66 69 6c 74 65   ..a=source-filte</div><div>01a0  72 3a 20 69 6e 63 6c 20 49 4e 20 49 50 34 20 2a   r: incl IN IP4 *</div><div>01b0  20 31 39 32 2e 31 36 38 2e 31 30 2e 31 30 0d 0a    192.168.10.10..</div>
<div>01c0  61 3d 72 74 63 70 2d 75 6e 69 63 61 73 74 3a 20   a=rtcp-unicast: </div><div>01d0  72 65 66 6c 65 63 74 69 6f 6e 0d 0a 61 3d 72 61   reflection..a=ra</div><div>01e0  6e 67 65 3a 6e 70 74 3d 30 2d 0d 0a 61 3d 78 2d   nge:npt=0-..a=x-</div>
<div>01f0  71 74 2d 74 65 78 74 2d 6e 61 6d 3a 53 65 73 73   qt-text-nam:Sess</div><div>0200  69 6f 6e 20 73 74 72 65 61 6d 65 64 20 62 79 20   ion streamed by </div><div>0210  66 72 61 6e 6b 0d 0a 61 3d 78 2d 71 74 2d 74 65   frank..a=x-qt-te</div>
<div>0220  78 74 2d 69 6e 66 3a 66 72 61 6e 6b 0d 0a 6d 3d   xt-inf:frank..m=</div><div>0230  76 69 64 65 6f 20 38 30 30 30 20 52 54 50 2f 41   video 8000 RTP/A</div><div>0240  56 50 20 39 36 0d 0a 63 3d 49 4e 20 49 50 34 20   VP 96..c=IN IP4 </div>
<div>0250  31 39 32 2e 31 36 38 2e 31 30 2e 31 30 2f 32 35   <a href="http://192.168.10.10/25">192.168.10.10/25</a></div><div>0260  35 0d 0a 62 3d 41 53 3a 34 35 30 30 0d 0a 61 3d   5..b=AS:4500..a=</div><div>0270  72 74 70 6d 61 70 3a 39 36 20 48 32 36 34 2f 39   rtpmap:96 H264/9</div>
<div>0280  30 30 30 30 0d 0a 61 3d 66 6d 74 70 3a 39 36 20   0000..a=fmtp:96 </div><div>0290  70 61 63 6b 65 74 69 7a 61 74 69 6f 6e 2d 6d 6f   packetization-mo</div><div>02a0  64 65 3d 31 3b 70 72 6f 66 69 6c 65 2d 6c 65 76   de=1;profile-lev</div>
<div>02b0  65 6c 2d 69 64 3d 30 30 30 30 34 31 3b 73 70 72   el-id=000041;spr</div><div>02c0  6f 70 2d 70 61 72 61 6d 65 74 65 72 2d 73 65 74   op-parameter-set</div><div>02d0  73 3d 48 32 36 34 0d 0a 61 3d 63 6f 6e 74 72 6f   s=H264..a=contro</div>
<div>02e0  6c 3a 74 72 61 63 6b 31 0d 0a                     l:track1..</div><div><br></div><div>ASCII bytes to tvb (3 bytes):</div><div><br></div><div>0000  00 00 41                                          ..A</div><div>
<br></div><div>h264 prop-parameter-sets (3 bytes):</div><div><br></div><div>0000  1f 6e b8                                          .n.</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     17 3.011104    192.168.10.4          192.168.10.10         RTSP     SETUP rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a> RTSP/1.0</div><div>     18 3.011799    192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=831 Ack=484 Win=9008 Len=0 TSV=1773710 TSER=29314078</div>
<div>     19 3.060406    192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 200 OK</div><div>     20 3.061527    192.168.10.4          192.168.10.10         RTSP     PLAY rtsp://<a href="http://192.168.10.10:8554/testStream/">192.168.10.10:8554/testStream/</a> RTSP/1.0</div>
<div>     21 3.062252    192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=1015 Ack=654 Win=10080 Len=0 TSV=1773721 TSER=29314129</div><div>     24 3.112507    192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 200 OK</div>
<div><br></div><div>Frame 24 (256 bytes on wire, 256 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.10 (192.168.10.10), Dst: 192.168.10.4 (192.168.10.4)</div><div>Transmission Control Protocol, Src Port: rtsp-alt (8554), Dst Port: 36236 (36236), Seq: 1015, Ack: 654, Len: 188</div>
<div>Real Time Streaming Protocol</div><div>    Response: RTSP/1.0 200 OK\r\n</div><div>        Status: 200</div><div>    CSeq: 4\r\n</div><div>    Date: Thu, Jan 01 1970 02:32:48 GMT\r\n</div><div>    Range: npt=0.000-\r\n</div>
<div>    Session: 33E6825D</div><div>    RTP-Info: url=rtsp://<a href="http://192.168.10.10:8554/testStream/track1;seq=7610;rtptime=35150190\r\n">192.168.10.10:8554/testStream/track1;seq=7610;rtptime=35150190\r\n</a></div>
<div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div><div>     25 3.117616    192.168.10.4          192.168.10.10         RTSP     GET_PARAMETER rtsp://<a href="http://192.168.10.10:8554/testStream/">192.168.10.10:8554/testStream/</a> RTSP/1.0</div>
<div>     26 3.118293    192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=1203 Ack=814 Win=11152 Len=0 TSV=1773732 TSER=29314185</div><div>     27 3.163629    192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 200 OK</div>
<div>     28 3.203476    192.168.10.4          192.168.10.10         TCP      36236 &gt; rtsp-alt [ACK] Seq=814 Ack=1287 Win=11008 Len=0 TSV=29314271 TSER=1773740</div><div>     32 5.813108    192.168.10.4          192.168.10.10         RTCP     Receiver Report   Source description   </div>
<div><br></div><div>Frame 32 (68 bytes on wire, 68 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>User Datagram Protocol, Src Port: vcom-tunnel (8001), Dst Port: vcom-tunnel (8001)</div>
<div>Real-time Transport Control Protocol (Receiver Report)</div><div>    [Stream setup by RTSP (frame 17)]</div><div>    10.. .... = Version: RFC 1889 Version (2)</div><div>    ..0. .... = Padding: False</div><div>    ...0 0000 = Reception report count: 0</div>
<div>    Packet type: Receiver Report (201)</div><div>    Length: 1 (8 bytes)</div><div>    Sender SSRC: 0xcd6b4254 (3446358612)</div><div>Real-time Transport Control Protocol (Source description)</div><div>    [Stream setup by RTSP (frame 17)]</div>
<div>    10.. .... = Version: RFC 1889 Version (2)</div><div>    ..0. .... = Padding: False</div><div>    ...0 0001 = Source count: 1</div><div>    Packet type: Source description (202)</div><div>    Length: 3 (16 bytes)</div>
<div>    Chunk 1, SSRC/CSRC 0xCD6B4254</div><div>[RTCP frame length check: OK - 24 bytes]</div><div><br></div><div>0000  00 04 00 01 00 06 00 13 77 c9 c3 7c 00 00 08 00   ........w..|....</div><div>0010  45 00 00 34 00 00 40 00 40 11 a5 5a c0 a8 0a 04   E..4..@.@..Z....</div>
<div>0020  c0 a8 0a 0a 1f 41 1f 41 00 20 9c 46 80 c9 00 01   .....A.A. .F....</div><div>0030  cd 6b 42 54 81 ca 00 03 cd 6b 42 54 01 02 6c 6c   .kBT.....kBT..ll</div><div>0040  00 00 00 00                                       ....</div>
<div><br></div><div>No.     Time        Source                Destination           Protocol Info</div><div>     51 11.179855   192.168.10.4          192.168.10.10         RTCP     Receiver Report   Source description   </div>
<div><br></div><div>Frame 51 (68 bytes on wire, 68 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>User Datagram Protocol, Src Port: vcom-tunnel (8001), Dst Port: vcom-tunnel (8001)</div>
<div>Real-time Transport Control Protocol (Receiver Report)</div><div>    [Stream setup by RTSP (frame 17)]</div><div>    10.. .... = Version: RFC 1889 Version (2)</div><div>    ..0. .... = Padding: False</div><div>    ...0 0000 = Reception report count: 0</div>
<div>    Packet type: Receiver Report (201)</div><div>    Length: 1 (8 bytes)</div><div>    Sender SSRC: 0xcd6b4254 (3446358612)</div><div>Real-time Transport Control Protocol (Source description)</div><div>    [Stream setup by RTSP (frame 17)]</div>
<div>    10.. .... = Version: RFC 1889 Version (2)</div><div>    ..0. .... = Padding: False</div><div>    ...0 0001 = Source count: 1</div><div>    Packet type: Source description (202)</div><div>    Length: 3 (16 bytes)</div>
<div>    Chunk 1, SSRC/CSRC 0xCD6B4254</div><div>[RTCP frame length check: OK - 24 bytes]</div><div><br></div><div>0000  00 04 00 01 00 06 00 13 77 c9 c3 7c 00 00 08 00   ........w..|....</div><div>0010  45 00 00 34 00 00 40 00 40 11 a5 5a c0 a8 0a 04   E..4..@.@..Z....</div>
<div>0020  c0 a8 0a 0a 1f 41 1f 41 00 20 9c 46 80 c9 00 01   .....A.A. .F....</div><div>0030  cd 6b 42 54 81 ca 00 03 cd 6b 42 54 01 02 6c 6c   .kBT.....kBT..ll</div><div>0040  00 00 00 00                                       ....</div>
<div><br></div><div>No.     Time        Source                Destination           Protocol Info</div><div>     60 13.675365   192.168.10.4          192.168.10.10         RTSP     TEARDOWN rtsp://<a href="http://192.168.10.10:8554/testStream/">192.168.10.10:8554/testStream/</a> RTSP/1.0</div>
<div><br></div><div>Frame 60 (223 bytes on wire, 223 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36236 (36236), Dst Port: rtsp-alt (8554), Seq: 814, Ack: 1287, Len: 155</div>
<div>Real Time Streaming Protocol</div><div>    Request: TEARDOWN rtsp://<a href="http://192.168.10.10:8554/testStream/">192.168.10.10:8554/testStream/</a> RTSP/1.0\r\n</div><div>        Method: TEARDOWN</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream/">192.168.10.10:8554/testStream/</a></div>
<div>    CSeq: 6\r\n</div><div>    Session: 33E6825D</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     61 13.676098   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=1287 Ack=969 Win=12224 Len=0 TSV=1775843 TSER=29324742</div><div>     62 13.681997   192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 200 OK</div>
<div>     63 13.682013   192.168.10.4          192.168.10.10         TCP      36236 &gt; rtsp-alt [ACK] Seq=969 Ack=1352 Win=11008 Len=0 TSV=29324749 TSER=1775845</div><div>     64 13.682021   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [FIN, ACK] Seq=1352 Ack=969 Win=12224 Len=0 TSV=1775845 TSER=29324742</div>
<div>     65 13.682330   192.168.10.4          192.168.10.10         RTCP     Receiver Report   Goodbye   </div><div>     66 13.682391   192.168.10.4          192.168.10.10         TCP      36236 &gt; rtsp-alt [FIN, ACK] Seq=969 Ack=1353 Win=11008 Len=0 TSV=29324749 TSER=1775845</div>
<div>     67 13.682493   192.168.10.4          192.168.10.10         TCP      36237 &gt; rtsp-alt [SYN] Seq=0 Win=5840 Len=0 MSS=1460 TSV=29324750 TSER=0 WS=6</div><div>     68 13.682956   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36236 [ACK] Seq=1353 Ack=970 Win=12224 Len=0 TSV=1775845 TSER=29324749</div>
<div>     69 13.683386   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36237 [SYN, ACK] Seq=0 Ack=1 Win=5792 Len=0 MSS=1460 TSV=1775845 TSER=29324750 WS=1</div><div>     70 13.683407   192.168.10.4          192.168.10.10         TCP      36237 &gt; rtsp-alt [ACK] Seq=1 Ack=1 Win=5888 Len=0 TSV=29324750 TSER=1775845</div>
<div>     71 13.683425   192.168.10.4          192.168.10.10         RTSP     OPTIONS rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0</div><div><br></div><div>Frame 71 (202 bytes on wire, 202 bytes captured)</div>
<div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36237 (36237), Dst Port: rtsp-alt (8554), Seq: 1, Ack: 1, Len: 134</div>
<div>Real Time Streaming Protocol</div><div>    Request: OPTIONS rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0\r\n</div><div>        Method: OPTIONS</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a></div>
<div>    CSeq: 1\r\n</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     72 13.684104   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36237 [ACK] Seq=1 Ack=135 Win=6864 Len=0 TSV=1775845 TSER=29324750</div><div>     73 13.735277   192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 200 OK</div>
<div><br></div><div>Frame 73 (220 bytes on wire, 220 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.10 (192.168.10.10), Dst: 192.168.10.4 (192.168.10.4)</div><div>Transmission Control Protocol, Src Port: rtsp-alt (8554), Dst Port: 36237 (36237), Seq: 1, Ack: 135, Len: 152</div>
<div>Real Time Streaming Protocol</div><div>    Response: RTSP/1.0 200 OK\r\n</div><div>        Status: 200</div><div>    CSeq: 1\r\n</div><div>    Date: Thu, Jan 01 1970 02:32:59 GMT\r\n</div><div>    Public: OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE, GET_PARAMETER, SET_PARAMETER\r\n</div>
<div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div><div>     74 13.735296   192.168.10.4          192.168.10.10         TCP      36237 &gt; rtsp-alt [ACK] Seq=135 Ack=153 Win=6912 Len=0 TSV=29324802 TSER=1775855</div>
<div>     75 13.735981   192.168.10.4          192.168.10.10         RTSP     DESCRIBE rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0</div><div><br></div><div>Frame 75 (228 bytes on wire, 228 bytes captured)</div>
<div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36237 (36237), Dst Port: rtsp-alt (8554), Seq: 135, Ack: 153, Len: 160</div>
<div>Real Time Streaming Protocol</div><div>    Request: DESCRIBE rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a> RTSP/1.0\r\n</div><div>        Method: DESCRIBE</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream">192.168.10.10:8554/testStream</a></div>
<div>    CSeq: 2\r\n</div><div>    Accept: application/sdp\r\n</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     76 13.736574   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36237 [ACK] Seq=153 Ack=295 Win=7936 Len=0 TSV=1775856 TSER=29324803</div><div>     77 13.787707   192.168.10.10         192.168.10.4          RTSP/SDP Reply: RTSP/1.0 200 OK, with session description[Malformed Packet]</div>
<div><br></div><div>Frame 77 (746 bytes on wire, 746 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.10 (192.168.10.10), Dst: 192.168.10.4 (192.168.10.4)</div><div>Transmission Control Protocol, Src Port: rtsp-alt (8554), Dst Port: 36237 (36237), Seq: 153, Ack: 295, Len: 678</div>
<div>Real Time Streaming Protocol</div><div>    Response: RTSP/1.0 200 OK\r\n</div><div>        Status: 200</div><div>    CSeq: 2\r\n</div><div>    Date: Thu, Jan 01 1970 02:32:59 GMT\r\n</div><div>    Content-Base: rtsp://<a href="http://192.168.10.10:8554/testStream/\r\n">192.168.10.10:8554/testStream/\r\n</a></div>
<div>    Content-type: application/sdp</div><div>    Content-length: 508</div><div>    \r\n</div><div>    Session Description Protocol</div><div>        Session Description Protocol Version (v): 0</div><div>        Owner/Creator, Session Id (o): - 9109105913 1 IN IP4 192.168.10.10</div>
<div>            Owner Username: -</div><div>            Session ID: 9109105913</div><div>            Session Version: 1</div><div>            Owner Network Type: IN</div><div>            Owner Address Type: IP4</div><div>
            Owner Address: 192.168.10.10</div><div>        Session Name (s): Session streamed by frank</div><div>        Session Information (i): frank</div><div>        Time Description, active time (t): 0 0</div><div>        Session Attribute (a): tool:LIVE555 Streaming Media v2010.07.29</div>
<div>        Session Attribute (a): type:broadcast</div><div>        Session Attribute (a): control:*</div><div>        Session Attribute (a): source-filter: incl IN IP4 * 192.168.10.10</div><div>        Session Attribute (a): rtcp-unicast: reflection</div>
<div>        Session Attribute (a): range:npt=0-</div><div>        Session Attribute (a): x-qt-text-nam:Session streamed by frank</div><div>        Session Attribute (a): x-qt-text-inf:frank</div><div>        Media Description, name and address (m): video 8000 RTP/AVP 96</div>
<div>        Connection Information (c): IN IP4 <a href="http://192.168.10.10/255">192.168.10.10/255</a></div><div>        Bandwidth Information (b): AS:4500</div><div>        Media Attribute (a): rtpmap:96 H264/90000</div>
<div>        Media Attribute (a): fmtp:96 packetization-mode=1;profile-level-id=000041;sprop-parameter-sets=H264</div><div>[Malformed Packet: SDP]</div><div><br></div><div>Frame (746 bytes):</div><div><br></div><div>0000  00 00 00 01 00 06 00 4a 5c 26 0a 5b 00 00 08 00   .......J\&amp;.[....</div>
<div>0010  45 00 02 da 4c 07 40 00 40 06 56 b8 c0 a8 0a 0a   E...L.@.@.V.....</div><div>0020  c0 a8 0a 04 21 6a 8d 8d 41 3d 55 79 49 63 c5 cc   ....!j..A=UyIc..</div><div>0030  80 18 0f 80 a7 56 00 00 01 01 08 0a 00 1b 18 f9   .....V..........</div>
<div>0040  01 bf 76 03 52 54 53 50 2f 31 2e 30 20 32 30 30   ..v.RTSP/1.0 200</div><div>0050  20 4f 4b 0d 0a 43 53 65 71 3a 20 32 0d 0a 44 61    OK..CSeq: 2..Da</div><div>0060  74 65 3a 20 54 68 75 2c 20 4a 61 6e 20 30 31 20   te: Thu, Jan 01 </div>
<div>0070  31 39 37 30 20 30 32 3a 33 32 3a 35 39 20 47 4d   1970 02:32:59 GM</div><div>0080  54 0d 0a 43 6f 6e 74 65 6e 74 2d 42 61 73 65 3a   T..Content-Base:</div><div>0090  20 72 74 73 70 3a 2f 2f 31 39 32 2e 31 36 38 2e    rtsp://192.168.</div>
<div>00a0  31 30 2e 31 30 3a 38 35 35 34 2f 74 65 73 74 53   10.10:8554/testS</div><div>00b0  74 72 65 61 6d 2f 0d 0a 43 6f 6e 74 65 6e 74 2d   tream/..Content-</div><div>00c0  54 79 70 65 3a 20 61 70 70 6c 69 63 61 74 69 6f   Type: applicatio</div>
<div>00d0  6e 2f 73 64 70 0d 0a 43 6f 6e 74 65 6e 74 2d 4c   n/sdp..Content-L</div><div>00e0  65 6e 67 74 68 3a 20 35 30 38 0d 0a 0d 0a 76 3d   ength: 508....v=</div><div>00f0  30 0d 0a 6f 3d 2d 20 39 31 30 39 31 30 35 39 31   0..o=- 910910591</div>
<div>0100  33 20 31 20 49 4e 20 49 50 34 20 31 39 32 2e 31   3 1 IN IP4 192.1</div><div>0110  36 38 2e 31 30 2e 31 30 0d 0a 73 3d 53 65 73 73   68.10.10..s=Sess</div><div>0120  69 6f 6e 20 73 74 72 65 61 6d 65 64 20 62 79 20   ion streamed by </div>
<div>0130  66 72 61 6e 6b 0d 0a 69 3d 66 72 61 6e 6b 0d 0a   frank..i=frank..</div><div>0140  74 3d 30 20 30 0d 0a 61 3d 74 6f 6f 6c 3a 4c 49   t=0 0..a=tool:LI</div><div>0150  56 45 35 35 35 20 53 74 72 65 61 6d 69 6e 67 20   VE555 Streaming </div>
<div>0160  4d 65 64 69 61 20 76 32 30 31 30 2e 30 37 2e 32   Media v2010.07.2</div><div>0170  39 0d 0a 61 3d 74 79 70 65 3a 62 72 6f 61 64 63   9..a=type:broadc</div><div>0180  61 73 74 0d 0a 61 3d 63 6f 6e 74 72 6f 6c 3a 2a   ast..a=control:*</div>
<div>0190  0d 0a 61 3d 73 6f 75 72 63 65 2d 66 69 6c 74 65   ..a=source-filte</div><div>01a0  72 3a 20 69 6e 63 6c 20 49 4e 20 49 50 34 20 2a   r: incl IN IP4 *</div><div>01b0  20 31 39 32 2e 31 36 38 2e 31 30 2e 31 30 0d 0a    192.168.10.10..</div>
<div>01c0  61 3d 72 74 63 70 2d 75 6e 69 63 61 73 74 3a 20   a=rtcp-unicast: </div><div>01d0  72 65 66 6c 65 63 74 69 6f 6e 0d 0a 61 3d 72 61   reflection..a=ra</div><div>01e0  6e 67 65 3a 6e 70 74 3d 30 2d 0d 0a 61 3d 78 2d   nge:npt=0-..a=x-</div>
<div>01f0  71 74 2d 74 65 78 74 2d 6e 61 6d 3a 53 65 73 73   qt-text-nam:Sess</div><div>0200  69 6f 6e 20 73 74 72 65 61 6d 65 64 20 62 79 20   ion streamed by </div><div>0210  66 72 61 6e 6b 0d 0a 61 3d 78 2d 71 74 2d 74 65   frank..a=x-qt-te</div>
<div>0220  78 74 2d 69 6e 66 3a 66 72 61 6e 6b 0d 0a 6d 3d   xt-inf:frank..m=</div><div>0230  76 69 64 65 6f 20 38 30 30 30 20 52 54 50 2f 41   video 8000 RTP/A</div><div>0240  56 50 20 39 36 0d 0a 63 3d 49 4e 20 49 50 34 20   VP 96..c=IN IP4 </div>
<div>0250  31 39 32 2e 31 36 38 2e 31 30 2e 31 30 2f 32 35   <a href="http://192.168.10.10/25">192.168.10.10/25</a></div><div>0260  35 0d 0a 62 3d 41 53 3a 34 35 30 30 0d 0a 61 3d   5..b=AS:4500..a=</div><div>0270  72 74 70 6d 61 70 3a 39 36 20 48 32 36 34 2f 39   rtpmap:96 H264/9</div>
<div>0280  30 30 30 30 0d 0a 61 3d 66 6d 74 70 3a 39 36 20   0000..a=fmtp:96 </div><div>0290  70 61 63 6b 65 74 69 7a 61 74 69 6f 6e 2d 6d 6f   packetization-mo</div><div>02a0  64 65 3d 31 3b 70 72 6f 66 69 6c 65 2d 6c 65 76   de=1;profile-lev</div>
<div>02b0  65 6c 2d 69 64 3d 30 30 30 30 34 31 3b 73 70 72   el-id=000041;spr</div><div>02c0  6f 70 2d 70 61 72 61 6d 65 74 65 72 2d 73 65 74   op-parameter-set</div><div>02d0  73 3d 48 32 36 34 0d 0a 61 3d 63 6f 6e 74 72 6f   s=H264..a=contro</div>
<div>02e0  6c 3a 74 72 61 63 6b 31 0d 0a                     l:track1..</div><div><br></div><div>ASCII bytes to tvb (3 bytes):</div><div><br></div><div>0000  00 00 41                                          ..A</div><div>
<br></div><div>h264 prop-parameter-sets (3 bytes):</div><div><br></div><div>0000  1f 6e b8                                          .n.</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     78 13.788745   192.168.10.4          192.168.10.10         RTSP     SETUP rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a> RTSP/1.0</div><div><br></div><div>Frame 78 (255 bytes on wire, 255 bytes captured)</div>
<div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36237 (36237), Dst Port: rtsp-alt (8554), Seq: 295, Ack: 831, Len: 187</div>
<div>Real Time Streaming Protocol</div><div>    Request: SETUP rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a> RTSP/1.0\r\n</div><div>        Method: SETUP</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a></div>
<div>    CSeq: 3\r\n</div><div>    Transport: RTP/AVP/TCP;unicast;interleaved=0-1</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     79 13.789426   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36237 [ACK] Seq=831 Ack=482 Win=9008 Len=0 TSV=1775866 TSER=29324856</div><div>     80 13.837882   192.168.10.10         192.168.10.4          RTSP     Reply: RTSP/1.0 461 Unsupported Transport</div>
<div><br></div><div>Frame 80 (152 bytes on wire, 152 bytes captured)</div><div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.10 (192.168.10.10), Dst: 192.168.10.4 (192.168.10.4)</div><div>Transmission Control Protocol, Src Port: rtsp-alt (8554), Dst Port: 36237 (36237), Seq: 831, Ack: 482, Len: 84</div>
<div>Real Time Streaming Protocol</div><div>    Response: RTSP/1.0 461 Unsupported Transport\r\n</div><div>        Status: 461</div><div>    CSeq: 3\r\n</div><div>    Date: Thu, Jan 01 1970 02:32:59 GMT\r\n</div><div>    \r\n</div>
<div><br></div><div>No.     Time        Source                Destination           Protocol Info</div><div>     81 13.837898   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36237 [FIN, ACK] Seq=915 Ack=482 Win=9008 Len=0 TSV=1775876 TSER=29324856</div>
<div>     82 13.838271   192.168.10.4          192.168.10.10         RTSP     SETUP rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a> RTSP/1.0</div><div><br></div><div>Frame 82 (257 bytes on wire, 257 bytes captured)</div>
<div>Linux cooked capture</div><div>Internet Protocol, Src: 192.168.10.4 (192.168.10.4), Dst: 192.168.10.10 (192.168.10.10)</div><div>Transmission Control Protocol, Src Port: 36237 (36237), Dst Port: rtsp-alt (8554), Seq: 482, Ack: 916, Len: 189</div>
<div>Real Time Streaming Protocol</div><div>    Request: SETUP rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a> RTSP/1.0\r\n</div><div>        Method: SETUP</div><div>        URL: rtsp://<a href="http://192.168.10.10:8554/testStream/track1">192.168.10.10:8554/testStream/track1</a></div>
<div>    CSeq: 4\r\n</div><div>    Transport: RTP/AVP;unicast;client_port=8000-8001</div><div>    User-Agent: VLC media player (LIVE555 Streaming Media v2010.04.09)\r\n</div><div>    \r\n</div><div><br></div><div>No.     Time        Source                Destination           Protocol Info</div>
<div>     83 13.838986   192.168.10.10         192.168.10.4          TCP      rtsp-alt &gt; 36237 [RST] Seq=916 Win=0 Len=0</div><div>     84 13.839006   192.168.10.4          192.168.10.10         RTCP     Receiver Report   Goodbye   </div>
<div><br></div></div>