| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 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 13 matching lines...) Expand all Loading... |
| 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 // This file contains the class CaptureRenderAdapter. The class connects a | 28 // This file contains the class CaptureRenderAdapter. The class connects a |
| 29 // VideoCapturer to any number of VideoRenders such that the former feeds the | 29 // VideoCapturer to any number of VideoRenders such that the former feeds the |
| 30 // latter. | 30 // latter. |
| 31 // CaptureRenderAdapter is Thread-unsafe. This means that none of its APIs may | 31 // CaptureRenderAdapter is Thread-unsafe. This means that none of its APIs may |
| 32 // be called concurrently. | 32 // be called concurrently. |
| 33 | 33 |
| 34 #ifndef TALK_MEDIA_BASE_CAPTURERENDERADAPTER_H_ | 34 #ifndef WEBRTC_MEDIA_BASE_CAPTURERENDERADAPTER_H_ |
| 35 #define TALK_MEDIA_BASE_CAPTURERENDERADAPTER_H_ | 35 #define WEBRTC_MEDIA_BASE_CAPTURERENDERADAPTER_H_ |
| 36 | 36 |
| 37 #include <vector> | 37 #include <vector> |
| 38 | 38 |
| 39 #include "talk/media/base/videocapturer.h" | |
| 40 #include "webrtc/base/criticalsection.h" | 39 #include "webrtc/base/criticalsection.h" |
| 41 #include "webrtc/base/sigslot.h" | 40 #include "webrtc/base/sigslot.h" |
| 41 #include "webrtc/media/base/videocapturer.h" |
| 42 #include "webrtc/media/base/videosinkinterface.h" | 42 #include "webrtc/media/base/videosinkinterface.h" |
| 43 | 43 |
| 44 namespace cricket { | 44 namespace cricket { |
| 45 | 45 |
| 46 class VideoCapturer; | 46 class VideoCapturer; |
| 47 class VideoProcessor; | 47 class VideoProcessor; |
| 48 | 48 |
| 49 class CaptureRenderAdapter : public sigslot::has_slots<> { | 49 class CaptureRenderAdapter : public sigslot::has_slots<> { |
| 50 public: | 50 public: |
| 51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); | 51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 65 | 65 |
| 66 // Just pointers since ownership is not handed over to this class. | 66 // Just pointers since ownership is not handed over to this class. |
| 67 std::vector<rtc::VideoSinkInterface<VideoFrame>*> sinks_; | 67 std::vector<rtc::VideoSinkInterface<VideoFrame>*> sinks_; |
| 68 VideoCapturer* video_capturer_; | 68 VideoCapturer* video_capturer_; |
| 69 // Critical section synchronizing the capture thread. | 69 // Critical section synchronizing the capture thread. |
| 70 rtc::CriticalSection capture_crit_; | 70 rtc::CriticalSection capture_crit_; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace cricket | 73 } // namespace cricket |
| 74 | 74 |
| 75 #endif // TALK_MEDIA_BASE_CAPTURERENDERADAPTER_H_ | 75 #endif // WEBRTC_MEDIA_BASE_CAPTURERENDERADAPTER_H_ |
| OLD | NEW |