OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 } | 75 } |
76 | 76 |
77 // We are not allowed to hold a critical section when calling below functions. | 77 // We are not allowed to hold a critical section when calling below functions. |
78 std::unique_ptr<RtpDepacketizer> depacketizer( | 78 std::unique_ptr<RtpDepacketizer> depacketizer( |
79 RtpDepacketizer::Create(rtp_header->type.Video.codec)); | 79 RtpDepacketizer::Create(rtp_header->type.Video.codec)); |
80 if (depacketizer.get() == NULL) { | 80 if (depacketizer.get() == NULL) { |
81 LOG(LS_ERROR) << "Failed to create depacketizer."; | 81 LOG(LS_ERROR) << "Failed to create depacketizer."; |
82 return -1; | 82 return -1; |
83 } | 83 } |
84 | 84 |
85 rtp_header->type.Video.is_first_packet_in_frame = is_first_packet; | 85 rtp_header->type.Video.isFirstPacket = is_first_packet; |
86 RtpDepacketizer::ParsedPayload parsed_payload; | 86 RtpDepacketizer::ParsedPayload parsed_payload; |
87 if (!depacketizer->Parse(&parsed_payload, payload, payload_data_length)) | 87 if (!depacketizer->Parse(&parsed_payload, payload, payload_data_length)) |
88 return -1; | 88 return -1; |
89 | 89 |
90 rtp_header->frameType = parsed_payload.frame_type; | 90 rtp_header->frameType = parsed_payload.frame_type; |
91 rtp_header->type = parsed_payload.type; | 91 rtp_header->type = parsed_payload.type; |
92 rtp_header->type.Video.rotation = kVideoRotation_0; | 92 rtp_header->type.Video.rotation = kVideoRotation_0; |
93 | 93 |
94 // Retrieve the video rotation information. | 94 // Retrieve the video rotation information. |
95 if (rtp_header->header.extension.hasVideoRotation) { | 95 if (rtp_header->header.extension.hasVideoRotation) { |
(...skipping 20 matching lines...) Expand all Loading... |
116 RtpFeedback* callback, | 116 RtpFeedback* callback, |
117 int8_t payload_type, | 117 int8_t payload_type, |
118 const char payload_name[RTP_PAYLOAD_NAME_SIZE], | 118 const char payload_name[RTP_PAYLOAD_NAME_SIZE], |
119 const PayloadUnion& specific_payload) const { | 119 const PayloadUnion& specific_payload) const { |
120 // TODO(pbos): Remove as soon as audio can handle a changing payload type | 120 // TODO(pbos): Remove as soon as audio can handle a changing payload type |
121 // without this callback. | 121 // without this callback. |
122 return 0; | 122 return 0; |
123 } | 123 } |
124 | 124 |
125 } // namespace webrtc | 125 } // namespace webrtc |
OLD | NEW |