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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 virtual int32_t Init(); | 43 virtual int32_t Init(); |
44 | 44 |
45 virtual int32_t ChangeWindow(void* window); | 45 virtual int32_t ChangeWindow(void* window); |
46 | 46 |
47 /************************************************************************** | 47 /************************************************************************** |
48 * | 48 * |
49 * Incoming Streams | 49 * Incoming Streams |
50 * | 50 * |
51 ***************************************************************************
/ | 51 ***************************************************************************
/ |
52 | 52 |
53 virtual VideoRenderCallback | 53 virtual rtc::VideoSinkInterface<VideoFrame> |
54 * AddIncomingRenderStream(const uint32_t streamId, | 54 * AddIncomingRenderStream(const uint32_t streamId, |
55 const uint32_t zOrder, | 55 const uint32_t zOrder, |
56 const float left, const float top, | 56 const float left, const float top, |
57 const float right, const float bottom); | 57 const float right, const float bottom); |
58 | 58 |
59 virtual int32_t | 59 virtual int32_t |
60 DeleteIncomingRenderStream(const uint32_t streamId); | 60 DeleteIncomingRenderStream(const uint32_t streamId); |
61 | 61 |
62 virtual int32_t | 62 virtual int32_t |
63 GetIncomingRenderStreamProperties(const uint32_t streamId, | 63 GetIncomingRenderStreamProperties(const uint32_t streamId, |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 void* _prtWindow; | 128 void* _prtWindow; |
129 bool _fullscreen; | 129 bool _fullscreen; |
130 | 130 |
131 VideoRenderWinMethod _renderMethod; | 131 VideoRenderWinMethod _renderMethod; |
132 IVideoRenderWin* _ptrRendererWin; | 132 IVideoRenderWin* _ptrRendererWin; |
133 }; | 133 }; |
134 | 134 |
135 } // namespace webrtc | 135 } // namespace webrtc |
136 | 136 |
137 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_WINDOWS_VIDEO_RENDER_WINDOWS_
IMPL_H_ | 137 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_WINDOWS_VIDEO_RENDER_WINDOWS_
IMPL_H_ |
OLD | NEW |