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 17 matching lines...) Expand all Loading... |
28 virtual int32_t Init() = 0; | 28 virtual int32_t Init() = 0; |
29 | 29 |
30 virtual int32_t ChangeWindow(void* window) = 0; | 30 virtual int32_t ChangeWindow(void* window) = 0; |
31 | 31 |
32 /************************************************************************** | 32 /************************************************************************** |
33 * | 33 * |
34 * Incoming Streams | 34 * Incoming Streams |
35 * | 35 * |
36 ***************************************************************************
/ | 36 ***************************************************************************
/ |
37 | 37 |
38 virtual VideoRenderCallback | 38 virtual rtc::VideoSinkInterface<VideoFrame> |
39 * AddIncomingRenderStream(const uint32_t streamId, | 39 * AddIncomingRenderStream(const uint32_t streamId, |
40 const uint32_t zOrder, | 40 const uint32_t zOrder, |
41 const float left, | 41 const float left, |
42 const float top, | 42 const float top, |
43 const float right, | 43 const float right, |
44 const float bottom) = 0; | 44 const float bottom) = 0; |
45 | 45 |
46 virtual int32_t | 46 virtual int32_t |
47 DeleteIncomingRenderStream(const uint32_t streamId) = 0; | 47 DeleteIncomingRenderStream(const uint32_t streamId) = 0; |
48 | 48 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 const void* colorKey, | 120 const void* colorKey, |
121 const float left, | 121 const float left, |
122 const float top, | 122 const float top, |
123 const float right, | 123 const float right, |
124 const float bottom) = 0; | 124 const float bottom) = 0; |
125 | 125 |
126 }; | 126 }; |
127 } // namespace webrtc | 127 } // namespace webrtc |
128 | 128 |
129 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_I_VIDEO_RENDER_H_ | 129 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_I_VIDEO_RENDER_H_ |
OLD | NEW |