| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. |
| 3 * Copyright 2012 Google Inc. | |
| 4 * | 3 * |
| 5 * Redistribution and use in source and binary forms, with or without | 4 * Use of this source code is governed by a BSD-style license |
| 6 * modification, are permitted provided that the following conditions are met: | 5 * that can be found in the LICENSE file in the root of the source |
| 7 * | 6 * tree. An additional intellectual property rights grant can be found |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 7 * in the file PATENTS. All contributing project authors may |
| 9 * this list of conditions and the following disclaimer. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | |
| 11 * this list of conditions and the following disclaimer in the documentation | |
| 12 * and/or other materials provided with the distribution. | |
| 13 * 3. The name of the author may not be used to endorse or promote products | |
| 14 * derived from this software without specific prior written permission. | |
| 15 * | |
| 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
| 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
| 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | |
| 19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
| 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
| 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
| 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 26 */ | 9 */ |
| 27 | 10 |
| 28 // This file contains the class CaptureRenderAdapter. The class connects a | 11 // This file contains the class CaptureRenderAdapter. The class connects a |
| 29 // VideoCapturer to any number of VideoRenders such that the former feeds the | 12 // VideoCapturer to any number of VideoRenders such that the former feeds the |
| 30 // latter. | 13 // latter. |
| 31 // CaptureRenderAdapter is Thread-unsafe. This means that none of its APIs may | 14 // CaptureRenderAdapter is Thread-unsafe. This means that none of its APIs may |
| 32 // be called concurrently. | 15 // be called concurrently. |
| 33 | 16 |
| 34 #ifndef TALK_MEDIA_BASE_CAPTURERENDERADAPTER_H_ | 17 #ifndef WEBRTC_MEDIA_BASE_CAPTURERENDERADAPTER_H_ |
| 35 #define TALK_MEDIA_BASE_CAPTURERENDERADAPTER_H_ | 18 #define WEBRTC_MEDIA_BASE_CAPTURERENDERADAPTER_H_ |
| 36 | 19 |
| 37 #include <vector> | 20 #include <vector> |
| 38 | 21 |
| 39 #include "talk/media/base/videocapturer.h" | |
| 40 #include "webrtc/base/criticalsection.h" | 22 #include "webrtc/base/criticalsection.h" |
| 41 #include "webrtc/base/sigslot.h" | 23 #include "webrtc/base/sigslot.h" |
| 24 #include "webrtc/media/base/videocapturer.h" |
| 42 | 25 |
| 43 namespace cricket { | 26 namespace cricket { |
| 44 | 27 |
| 45 class VideoCapturer; | 28 class VideoCapturer; |
| 46 class VideoProcessor; | 29 class VideoProcessor; |
| 47 class VideoRenderer; | 30 class VideoRenderer; |
| 48 | 31 |
| 49 class CaptureRenderAdapter : public sigslot::has_slots<> { | 32 class CaptureRenderAdapter : public sigslot::has_slots<> { |
| 50 public: | 33 public: |
| 51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); | 34 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 81 bool IsRendererRegistered(const VideoRenderer& video_renderer) const; | 64 bool IsRendererRegistered(const VideoRenderer& video_renderer) const; |
| 82 | 65 |
| 83 VideoRenderers video_renderers_; | 66 VideoRenderers video_renderers_; |
| 84 VideoCapturer* video_capturer_; | 67 VideoCapturer* video_capturer_; |
| 85 // Critical section synchronizing the capture thread. | 68 // Critical section synchronizing the capture thread. |
| 86 mutable rtc::CriticalSection capture_crit_; | 69 mutable rtc::CriticalSection capture_crit_; |
| 87 }; | 70 }; |
| 88 | 71 |
| 89 } // namespace cricket | 72 } // namespace cricket |
| 90 | 73 |
| 91 #endif // TALK_MEDIA_BASE_CAPTURERENDERADAPTER_H_ | 74 #endif // WEBRTC_MEDIA_BASE_CAPTURERENDERADAPTER_H_ |
| OLD | NEW |