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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 VideoCaptureEncodeInterface* GetEncodeInterface( | 83 VideoCaptureEncodeInterface* GetEncodeInterface( |
84 const webrtc::VideoCodec& codec) override { | 84 const webrtc::VideoCodec& codec) override { |
85 return NULL; // not implemented | 85 return NULL; // not implemented |
86 } | 86 } |
87 int32_t AddRef() const override { return 0; } | 87 int32_t AddRef() const override { return 0; } |
88 int32_t Release() const override { | 88 int32_t Release() const override { |
89 delete this; | 89 delete this; |
90 return 0; | 90 return 0; |
91 } | 91 } |
92 | 92 |
93 bool SendFrame(int w, int h) { | 93 void SendFrame(int w, int h) { |
94 if (!running_) return false; | 94 if (!running_) return; |
95 webrtc::VideoFrame sample; | 95 webrtc::VideoFrame sample; |
96 // Setting stride based on width. | 96 // Setting stride based on width. |
97 if (sample.CreateEmptyFrame(w, h, w, (w + 1) / 2, (w + 1) / 2) < 0) { | 97 sample.CreateEmptyFrame(w, h, w, (w + 1) / 2, (w + 1) / 2); |
98 return false; | |
99 } | |
100 if (callback_) { | 98 if (callback_) { |
101 callback_->OnIncomingCapturedFrame(id_, sample); | 99 callback_->OnIncomingCapturedFrame(id_, sample); |
102 } | 100 } |
103 return true; | |
104 } | 101 } |
105 | 102 |
106 const webrtc::VideoCaptureCapability& cap() const { | 103 const webrtc::VideoCaptureCapability& cap() const { |
107 return cap_; | 104 return cap_; |
108 } | 105 } |
109 | 106 |
110 private: | 107 private: |
111 // Ref-counted, use Release() instead. | 108 // Ref-counted, use Release() instead. |
112 ~FakeWebRtcVideoCaptureModule(); | 109 ~FakeWebRtcVideoCaptureModule(); |
113 | 110 |
114 FakeWebRtcVcmFactory* factory_; | 111 FakeWebRtcVcmFactory* factory_; |
115 int id_; | 112 int id_; |
116 webrtc::VideoCaptureDataCallback* callback_; | 113 webrtc::VideoCaptureDataCallback* callback_; |
117 bool running_; | 114 bool running_; |
118 webrtc::VideoCaptureCapability cap_; | 115 webrtc::VideoCaptureCapability cap_; |
119 int delay_; | 116 int delay_; |
120 }; | 117 }; |
121 | 118 |
122 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVIDEOCAPTUREMODULE_H_ | 119 #endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVIDEOCAPTUREMODULE_H_ |
OLD | NEW |