| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 payload->name[RTP_PAYLOAD_NAME_SIZE - 1] = 0; | 408 payload->name[RTP_PAYLOAD_NAME_SIZE - 1] = 0; |
| 409 strncpy(payload->name, payloadName, RTP_PAYLOAD_NAME_SIZE - 1); | 409 strncpy(payload->name, payloadName, RTP_PAYLOAD_NAME_SIZE - 1); |
| 410 assert(frequency >= 1000); | 410 assert(frequency >= 1000); |
| 411 payload->typeSpecific.Audio.frequency = frequency; | 411 payload->typeSpecific.Audio.frequency = frequency; |
| 412 payload->typeSpecific.Audio.channels = channels; | 412 payload->typeSpecific.Audio.channels = channels; |
| 413 payload->typeSpecific.Audio.rate = rate; | 413 payload->typeSpecific.Audio.rate = rate; |
| 414 payload->audio = true; | 414 payload->audio = true; |
| 415 return payload; | 415 return payload; |
| 416 } | 416 } |
| 417 | 417 |
| 418 int GetPayloadTypeFrequency( | 418 int GetPayloadTypeFrequency(const RtpUtility::Payload& payload) const { |
| 419 const RtpUtility::Payload& payload) const override { | |
| 420 return payload.typeSpecific.Audio.frequency; | 419 return payload.typeSpecific.Audio.frequency; |
| 421 } | 420 } |
| 422 }; | 421 }; |
| 423 | 422 |
| 424 class RTPPayloadVideoStrategy : public RTPPayloadStrategy { | 423 class RTPPayloadVideoStrategy : public RTPPayloadStrategy { |
| 425 public: | 424 public: |
| 426 bool CodecsMustBeUnique() const override { return false; } | 425 bool CodecsMustBeUnique() const override { return false; } |
| 427 | 426 |
| 428 bool PayloadIsCompatible(const RtpUtility::Payload& payload, | 427 bool PayloadIsCompatible(const RtpUtility::Payload& payload, |
| 429 const uint32_t frequency, | 428 const uint32_t frequency, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 459 } | 458 } |
| 460 RtpUtility::Payload* payload = new RtpUtility::Payload; | 459 RtpUtility::Payload* payload = new RtpUtility::Payload; |
| 461 | 460 |
| 462 payload->name[RTP_PAYLOAD_NAME_SIZE - 1] = 0; | 461 payload->name[RTP_PAYLOAD_NAME_SIZE - 1] = 0; |
| 463 strncpy(payload->name, payloadName, RTP_PAYLOAD_NAME_SIZE - 1); | 462 strncpy(payload->name, payloadName, RTP_PAYLOAD_NAME_SIZE - 1); |
| 464 payload->typeSpecific.Video.videoCodecType = videoType; | 463 payload->typeSpecific.Video.videoCodecType = videoType; |
| 465 payload->audio = false; | 464 payload->audio = false; |
| 466 return payload; | 465 return payload; |
| 467 } | 466 } |
| 468 | 467 |
| 469 int GetPayloadTypeFrequency( | 468 int GetPayloadTypeFrequency(const RtpUtility::Payload& payload) const { |
| 470 const RtpUtility::Payload& payload) const override { | |
| 471 return kVideoPayloadTypeFrequency; | 469 return kVideoPayloadTypeFrequency; |
| 472 } | 470 } |
| 473 }; | 471 }; |
| 474 | 472 |
| 475 RTPPayloadStrategy* RTPPayloadStrategy::CreateStrategy( | 473 RTPPayloadStrategy* RTPPayloadStrategy::CreateStrategy( |
| 476 const bool handling_audio) { | 474 const bool handling_audio) { |
| 477 if (handling_audio) { | 475 if (handling_audio) { |
| 478 return new RTPPayloadAudioStrategy(); | 476 return new RTPPayloadAudioStrategy(); |
| 479 } else { | 477 } else { |
| 480 return new RTPPayloadVideoStrategy(); | 478 return new RTPPayloadVideoStrategy(); |
| 481 } | 479 } |
| 482 } | 480 } |
| 483 | 481 |
| 484 } // namespace webrtc | 482 } // namespace webrtc |
| OLD | NEW |