HomeSort by relevance Sort by last modified time
    Searched refs:rtp_buf (Results 1 - 3 of 3) sorted by null

  /external/curl/lib/
rtsp.h 44 char *rtp_buf; member in struct:rtsp_conn
rtsp.c 191 Curl_safefree(conn->proto.rtspc.rtp_buf);
615 if(rtspc->rtp_buf) {
617 char *newptr = realloc(rtspc->rtp_buf, rtspc->rtp_bufsize + *nread);
619 Curl_safefree(rtspc->rtp_buf);
620 rtspc->rtp_buf = NULL;
624 rtspc->rtp_buf = newptr;
625 memcpy(rtspc->rtp_buf + rtspc->rtp_bufsize, k->str, *nread);
627 rtp = rtspc->rtp_buf;
662 Curl_safefree(rtspc->rtp_buf);
663 rtspc->rtp_buf = NULL
    [all...]
  /external/webrtc/talk/media/base/
rtpdump_unittest.cc 43 rtc::ByteBuffer rtp_buf; local
44 RtpTestUtility::kTestRawRtpPackets[0].WriteToByteBuffer(kTestSsrc, &rtp_buf);
45 RtpDumpPacket rtp_packet(rtp_buf.Data(), rtp_buf.Length(), 0, false);

Completed in 933 milliseconds