| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 } | 96 } |
| 97 | 97 |
| 98 void WebRtcVideoFrame::set_timestamp_us(int64_t time_us) { | 98 void WebRtcVideoFrame::set_timestamp_us(int64_t time_us) { |
| 99 timestamp_us_ = time_us; | 99 timestamp_us_ = time_us; |
| 100 } | 100 } |
| 101 | 101 |
| 102 webrtc::VideoRotation WebRtcVideoFrame::rotation() const { | 102 webrtc::VideoRotation WebRtcVideoFrame::rotation() const { |
| 103 return rotation_; | 103 return rotation_; |
| 104 } | 104 } |
| 105 | 105 |
| 106 size_t WebRtcVideoFrame::ConvertToRgbBuffer(uint32_t to_fourcc, | |
| 107 uint8_t* buffer, | |
| 108 size_t size, | |
| 109 int stride_rgb) const { | |
| 110 RTC_CHECK(video_frame_buffer_); | |
| 111 RTC_CHECK(video_frame_buffer_->native_handle() == nullptr); | |
| 112 return VideoFrame::ConvertToRgbBuffer(to_fourcc, buffer, size, stride_rgb); | |
| 113 } | |
| 114 | |
| 115 bool WebRtcVideoFrame::Reset(uint32_t format, | 106 bool WebRtcVideoFrame::Reset(uint32_t format, |
| 116 int w, | 107 int w, |
| 117 int h, | 108 int h, |
| 118 int dw, | 109 int dw, |
| 119 int dh, | 110 int dh, |
| 120 uint8_t* sample, | 111 uint8_t* sample, |
| 121 size_t sample_size, | 112 size_t sample_size, |
| 122 int64_t timestamp_us, | 113 int64_t timestamp_us, |
| 123 webrtc::VideoRotation rotation, | 114 webrtc::VideoRotation rotation, |
| 124 bool apply_rotation) { | 115 bool apply_rotation) { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 static_cast<libyuv::RotationMode>(rotation())); | 208 static_cast<libyuv::RotationMode>(rotation())); |
| 218 if (ret == 0) { | 209 if (ret == 0) { |
| 219 rotated_frame_.reset(new WebRtcVideoFrame( | 210 rotated_frame_.reset(new WebRtcVideoFrame( |
| 220 buffer, webrtc::kVideoRotation_0, timestamp_us_, transport_frame_id_)); | 211 buffer, webrtc::kVideoRotation_0, timestamp_us_, transport_frame_id_)); |
| 221 } | 212 } |
| 222 | 213 |
| 223 return rotated_frame_.get(); | 214 return rotated_frame_.get(); |
| 224 } | 215 } |
| 225 | 216 |
| 226 } // namespace cricket | 217 } // namespace cricket |
| OLD | NEW |