OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rtpHeader
(Results
1 - 11
of
11
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/test/
RTPFile.cc
31
const uint8_t*
rtpHeader
) {
32
rtpInfo->header.payloadType =
rtpHeader
[1];
33
rtpInfo->header.sequenceNumber = (static_cast<uint16_t>(
rtpHeader
[2]) << 8) |
34
rtpHeader
[3];
35
rtpInfo->header.timestamp = (static_cast<uint32_t>(
rtpHeader
[4]) << 24) |
36
(static_cast<uint32_t>(
rtpHeader
[5]) << 16) |
37
(static_cast<uint32_t>(
rtpHeader
[6]) << 8) |
rtpHeader
[7];
38
rtpInfo->header.ssrc = (static_cast<uint32_t>(
rtpHeader
[8]) << 24) |
39
(static_cast<uint32_t>(
rtpHeader
[9]) << 16)
[
all
...]
RTPFile.h
40
void MakeRTPheader(uint8_t*
rtpHeader
, uint8_t payloadType, int16_t seqNo,
43
void ParseRTPHeader(WebRtcRTPHeader* rtpInfo, const uint8_t*
rtpHeader
);
EncodeDecodeTest.h
40
static void MakeRTPheader(uint8_t*
rtpHeader
, uint8_t payloadType,
/external/webrtc/webrtc/modules/video_coding/
packet.cc
38
const WebRtcRTPHeader&
rtpHeader
)
39
: payloadType(
rtpHeader
.header.payloadType),
40
timestamp(
rtpHeader
.header.timestamp),
41
ntp_time_ms_(
rtpHeader
.ntp_time_ms),
42
seqNum(
rtpHeader
.header.sequenceNumber),
45
markerBit(
rtpHeader
.header.markerBit),
47
frameType(
rtpHeader
.frameType),
49
isFirstPacket(
rtpHeader
.type.Video.isFirstPacket),
52
width(
rtpHeader
.type.Video.width),
53
height(
rtpHeader
.type.Video.height)
[
all
...]
packet.h
25
const WebRtcRTPHeader&
rtpHeader
);
/external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
test_api_audio.cc
31
const webrtc::WebRtcRTPHeader*
rtpHeader
) override {
32
if (
rtpHeader
->header.payloadType == 98 ||
33
rtpHeader
->header.payloadType == 99) {
45
if (
rtpHeader
->header.payloadType == 100 ||
46
rtpHeader
->header.payloadType == 101 ||
47
rtpHeader
->header.payloadType == 102) {
48
if (
rtpHeader
->type.Audio.channel == 1) {
/external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp_defines.h
195
const WebRtcRTPHeader*
rtpHeader
) = 0;
352
const WebRtcRTPHeader*
rtpHeader
) override {
/external/webrtc/webrtc/modules/rtp_rtcp/mocks/
mock_rtp_rtcp.h
32
const WebRtcRTPHeader*
rtpHeader
));
/external/webrtc/webrtc/voice_engine/
channel.cc
458
const WebRtcRTPHeader*
rtpHeader
)
464
rtpHeader
->header.payloadType,
465
rtpHeader
->type.Audio.channel);
482
*
rtpHeader
) != 0)
491
UpdatePacketDelay(
rtpHeader
->header.timestamp,
492
rtpHeader
->header.sequenceNumber);
510
RTPHeader
header;
[
all
...]
channel.h
376
const WebRtcRTPHeader*
rtpHeader
) override;
474
const
RTPHeader
& header, bool in_order);
477
const
RTPHeader
& header);
478
bool IsPacketInOrder(const
RTPHeader
& header) const;
479
bool IsPacketRetransmitted(const
RTPHeader
& header, bool in_order) const;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_receiver_unittest.cc
62
const WebRtcRTPHeader*
rtpHeader
) override {
[
all
...]
Completed in 137 milliseconds