| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 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 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 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, | 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 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 | 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 // Definition of class CarbonVideoRenderer that implements the abstract class | 28 // Definition of class CarbonVideoRenderer that implements the abstract class |
| 29 // cricket::VideoRenderer via Carbon. | 29 // cricket::VideoRenderer via Carbon. |
| 30 | 30 |
| 31 #ifndef TALK_MEDIA_DEVICES_CARBONVIDEORENDERER_H_ | 31 #ifndef WEBRTC_MEDIA_DEVICES_CARBONVIDEORENDERER_H_ |
| 32 #define TALK_MEDIA_DEVICES_CARBONVIDEORENDERER_H_ | 32 #define WEBRTC_MEDIA_DEVICES_CARBONVIDEORENDERER_H_ |
| 33 | 33 |
| 34 #include <Carbon/Carbon.h> | 34 #include <Carbon/Carbon.h> |
| 35 | 35 |
| 36 #include "talk/media/base/videorenderer.h" | |
| 37 #include "webrtc/base/criticalsection.h" | 36 #include "webrtc/base/criticalsection.h" |
| 38 #include "webrtc/base/scoped_ptr.h" | 37 #include "webrtc/base/scoped_ptr.h" |
| 38 #include "webrtc/media/base/videorenderer.h" |
| 39 | 39 |
| 40 namespace cricket { | 40 namespace cricket { |
| 41 | 41 |
| 42 class CarbonVideoRenderer : public VideoRenderer { | 42 class CarbonVideoRenderer : public VideoRenderer { |
| 43 public: | 43 public: |
| 44 CarbonVideoRenderer(int x, int y); | 44 CarbonVideoRenderer(int x, int y); |
| 45 virtual ~CarbonVideoRenderer(); | 45 virtual ~CarbonVideoRenderer(); |
| 46 | 46 |
| 47 // Implementation of pure virtual methods of VideoRenderer. | 47 // Implementation of pure virtual methods of VideoRenderer. |
| 48 // These two methods may be executed in different threads. | 48 // These two methods may be executed in different threads. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 63 rtc::CriticalSection image_crit_; | 63 rtc::CriticalSection image_crit_; |
| 64 int image_width_; | 64 int image_width_; |
| 65 int image_height_; | 65 int image_height_; |
| 66 int x_; | 66 int x_; |
| 67 int y_; | 67 int y_; |
| 68 WindowRef window_ref_; | 68 WindowRef window_ref_; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace cricket | 71 } // namespace cricket |
| 72 | 72 |
| 73 #endif // TALK_MEDIA_DEVICES_CARBONVIDEORENDERER_H_ | 73 #endif // WEBRTC_MEDIA_DEVICES_CARBONVIDEORENDERER_H_ |
| OLD | NEW |