Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Side by Side Diff: webrtc/media/devices/carbonvideorenderer.h

Issue 1587193006: Move talk/media to webrtc/media (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased to b647aca12a884a13c1728118586245399b55fa3d (#11493) Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/media/base/yuvframegenerator.cc ('k') | webrtc/media/devices/carbonvideorenderer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « webrtc/media/base/yuvframegenerator.cc ('k') | webrtc/media/devices/carbonvideorenderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698