OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 27 matching lines...) Expand all Loading... |
38 | 38 |
39 virtual int32_t Init(); | 39 virtual int32_t Init(); |
40 | 40 |
41 virtual int32_t ChangeWindow(void* window); | 41 virtual int32_t ChangeWindow(void* window); |
42 | 42 |
43 /************************************************************************** | 43 /************************************************************************** |
44 * | 44 * |
45 * Incoming Streams | 45 * Incoming Streams |
46 * | 46 * |
47 ***************************************************************************
/ | 47 ***************************************************************************
/ |
48 virtual VideoRenderCallback* AddIncomingRenderStream(const uint32_t streamId
, | 48 virtual rtc::VideoSinkInterface<VideoFrame>* AddIncomingRenderStream(const u
int32_t streamId, |
49 const uint32_t zOrder, | 49 const uint32_t zOrder, |
50 const float left, | 50 const float left, |
51 const float top, | 51 const float top, |
52 const float right, | 52 const float right, |
53 const float bottom); | 53 const float bottom); |
54 | 54 |
55 virtual int32_t DeleteIncomingRenderStream(const uint32_t streamId); | 55 virtual int32_t DeleteIncomingRenderStream(const uint32_t streamId); |
56 | 56 |
57 virtual int32_t GetIncomingRenderStreamProperties(const uint32_t streamId, | 57 virtual int32_t GetIncomingRenderStreamProperties(const uint32_t streamId, |
58 uint32_t& zOrder, | 58 uint32_t& zOrder, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 bool _fullScreen; | 132 bool _fullScreen; |
133 void* _ptrWindow; | 133 void* _ptrWindow; |
134 VideoRenderNSOpenGL* _ptrCocoaRender; | 134 VideoRenderNSOpenGL* _ptrCocoaRender; |
135 | 135 |
136 }; | 136 }; |
137 | 137 |
138 } // namespace webrtc | 138 } // namespace webrtc |
139 | 139 |
140 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_MAC_VIDEO_RENDER_MAC_COCOA_IM
PL_H_ | 140 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_MAC_VIDEO_RENDER_MAC_COCOA_IM
PL_H_ |
141 #endif // COCOA_RENDERING | 141 #endif // COCOA_RENDERING |
OLD | NEW |