OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2004 Google Inc. | 3 * Copyright 2004 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 const webrtc::VideoFrame& frame); | 85 const webrtc::VideoFrame& frame); |
86 virtual void OnCaptureDelayChanged(const int32_t id, | 86 virtual void OnCaptureDelayChanged(const int32_t id, |
87 const int32_t delay); | 87 const int32_t delay); |
88 | 88 |
89 // Used to signal captured frames on the same thread as invoked Start(). | 89 // Used to signal captured frames on the same thread as invoked Start(). |
90 // With WebRTC's current VideoCapturer implementations, this will mean a | 90 // With WebRTC's current VideoCapturer implementations, this will mean a |
91 // thread hop, but in other implementations (e.g. Chrome) it will be called | 91 // thread hop, but in other implementations (e.g. Chrome) it will be called |
92 // directly from OnIncomingCapturedFrame. | 92 // directly from OnIncomingCapturedFrame. |
93 // TODO(tommi): Remove this workaround when we've updated the WebRTC capturers | 93 // TODO(tommi): Remove this workaround when we've updated the WebRTC capturers |
94 // to follow the same contract. | 94 // to follow the same contract. |
95 void SignalFrameCapturedOnStartThread(const webrtc::VideoFrame frame); | 95 void SignalFrameCapturedOnStartThread(const webrtc::VideoFrame& frame); |
96 | 96 |
97 rtc::scoped_ptr<WebRtcVcmFactoryInterface> factory_; | 97 rtc::scoped_ptr<WebRtcVcmFactoryInterface> factory_; |
98 webrtc::VideoCaptureModule* module_; | 98 webrtc::VideoCaptureModule* module_; |
99 int captured_frames_; | 99 int captured_frames_; |
100 std::vector<uint8_t> capture_buffer_; | 100 std::vector<uint8_t> capture_buffer_; |
101 rtc::Thread* start_thread_; // Set in Start(), unset in Stop(); | 101 rtc::Thread* start_thread_; // Set in Start(), unset in Stop(); |
102 | 102 |
103 rtc::scoped_ptr<rtc::AsyncInvoker> async_invoker_; | 103 rtc::scoped_ptr<rtc::AsyncInvoker> async_invoker_; |
104 }; | 104 }; |
105 | 105 |
106 struct WebRtcCapturedFrame : public CapturedFrame { | 106 struct WebRtcCapturedFrame : public CapturedFrame { |
107 public: | 107 public: |
108 WebRtcCapturedFrame(const webrtc::VideoFrame& frame, | 108 WebRtcCapturedFrame(const webrtc::VideoFrame& frame, |
109 void* buffer, | 109 void* buffer, |
110 size_t length); | 110 size_t length); |
111 }; | 111 }; |
112 | 112 |
113 } // namespace cricket | 113 } // namespace cricket |
114 | 114 |
115 #endif // HAVE_WEBRTC_VIDEO | 115 #endif // HAVE_WEBRTC_VIDEO |
116 #endif // TALK_MEDIA_WEBRTCVIDEOCAPTURER_H_ | 116 #endif // TALK_MEDIA_WEBRTCVIDEOCAPTURER_H_ |
OLD | NEW |