Home
last modified time | relevance | path

Searched refs:rtp_buf (Results 1 – 3 of 3) sorted by relevance

/external/curl/lib/
Drtsp.c191 Curl_safefree(conn->proto.rtspc.rtp_buf); in rtsp_disconnect()
615 if(rtspc->rtp_buf) { in rtsp_rtp_readwrite()
617 char *newptr = realloc(rtspc->rtp_buf, rtspc->rtp_bufsize + *nread); in rtsp_rtp_readwrite()
619 Curl_safefree(rtspc->rtp_buf); in rtsp_rtp_readwrite()
620 rtspc->rtp_buf = NULL; in rtsp_rtp_readwrite()
624 rtspc->rtp_buf = newptr; in rtsp_rtp_readwrite()
625 memcpy(rtspc->rtp_buf + rtspc->rtp_bufsize, k->str, *nread); in rtsp_rtp_readwrite()
627 rtp = rtspc->rtp_buf; in rtsp_rtp_readwrite()
662 Curl_safefree(rtspc->rtp_buf); in rtsp_rtp_readwrite()
663 rtspc->rtp_buf = NULL; in rtsp_rtp_readwrite()
[all …]
Drtsp.h44 char *rtp_buf; member
/external/webrtc/talk/media/base/
Drtpdump_unittest.cc43 rtc::ByteBuffer rtp_buf; in TEST() local
44 RtpTestUtility::kTestRawRtpPackets[0].WriteToByteBuffer(kTestSsrc, &rtp_buf); in TEST()
45 RtpDumpPacket rtp_packet(rtp_buf.Data(), rtp_buf.Length(), 0, false); in TEST()