Home | History | Annotate | Download | only in source

Lines Matching refs:payload

25 using RtpUtility::Payload;
105 // payload or not.
113 LOG(LS_ERROR) << "Failed to register payload: " << payload_name << "/"
162 const uint8_t* payload,
169 int8_t first_payload_byte = payload_length > 0 ? payload[0] : 0;
178 LOG(LS_WARNING) << "Receiving invalid payload type.";
202 &webrtc_rtp_header, payload_specific, is_red, payload, payload_length,
278 const Payload* payload = rtp_payload_registry_->PayloadTypeToPayload(
280 if (!payload) {
284 strncpy(payload_name, payload->name, RTP_PAYLOAD_NAME_SIZE - 1);
285 if (payload->audio) {
286 channels = payload->typeSpecific.Audio.channels;
287 rate = payload->typeSpecific.Audio.rate;
307 LOG(LS_ERROR) << "Failed to create decoder for payload type: "
319 // last known payload).
338 // Get the real codec payload type.
343 // Invalid payload type, traced by caller. If we proceeded here,
349 // When we receive RED we need to check the real payload type.
366 const Payload* payload =
368 if (!payload) {
369 // Not a registered payload type.
373 strncpy(payload_name, payload->name, RTP_PAYLOAD_NAME_SIZE - 1);
379 rtp_media_receiver_->SetLastMediaSpecificPayload(payload->typeSpecific);
382 if (!payload->audio) {
400 return -1; // Wrong payload type.