OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 return CaptureCustomFrame(width, height, 33333333, fourcc); | 72 return CaptureCustomFrame(width, height, 33333333, fourcc); |
73 } | 73 } |
74 bool CaptureCustomFrame(int width, | 74 bool CaptureCustomFrame(int width, |
75 int height, | 75 int height, |
76 int64_t timestamp_interval, | 76 int64_t timestamp_interval, |
77 uint32_t fourcc) { | 77 uint32_t fourcc) { |
78 if (!running_) { | 78 if (!running_) { |
79 return false; | 79 return false; |
80 } | 80 } |
81 // Currently, |fourcc| is always I420 or ARGB. | 81 // Currently, |fourcc| is always I420 or ARGB. |
| 82 // TODO(fbarchard): Extend SizeOf to take fourcc. |
82 uint32_t size = 0u; | 83 uint32_t size = 0u; |
83 if (fourcc == cricket::FOURCC_ARGB) { | 84 if (fourcc == cricket::FOURCC_ARGB) { |
84 size = width * 4 * height; | 85 size = width * 4 * height; |
85 } else if (fourcc == cricket::FOURCC_I420) { | 86 } else if (fourcc == cricket::FOURCC_I420) { |
86 size = width * height + 2 * ((width + 1) / 2) * ((height + 1) / 2); | 87 size = static_cast<uint32_t>(cricket::VideoFrame::SizeOf(width, height)); |
87 } else { | 88 } else { |
88 return false; // Unsupported FOURCC. | 89 return false; // Unsupported FOURCC. |
89 } | 90 } |
90 if (size == 0u) { | 91 if (size == 0u) { |
91 return false; // Width and/or Height were zero. | 92 return false; // Width and/or Height were zero. |
92 } | 93 } |
93 | 94 |
94 cricket::CapturedFrame frame; | 95 cricket::CapturedFrame frame; |
95 frame.width = width; | 96 frame.width = width; |
96 frame.height = height; | 97 frame.height = height; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 bool running_; | 156 bool running_; |
156 int64_t initial_unix_timestamp_; | 157 int64_t initial_unix_timestamp_; |
157 int64_t next_timestamp_; | 158 int64_t next_timestamp_; |
158 bool is_screencast_; | 159 bool is_screencast_; |
159 webrtc::VideoRotation rotation_; | 160 webrtc::VideoRotation rotation_; |
160 }; | 161 }; |
161 | 162 |
162 } // namespace cricket | 163 } // namespace cricket |
163 | 164 |
164 #endif // WEBRTC_MEDIA_BASE_FAKEVIDEOCAPTURER_H_ | 165 #endif // WEBRTC_MEDIA_BASE_FAKEVIDEOCAPTURER_H_ |
OLD | NEW |