| 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 24 matching lines...) Expand all Loading... |
| 35 virtual int32_t Init(); | 35 virtual int32_t Init(); |
| 36 | 36 |
| 37 virtual int32_t ChangeWindow(void* window); | 37 virtual int32_t ChangeWindow(void* window); |
| 38 | 38 |
| 39 /************************************************************************** | 39 /************************************************************************** |
| 40 * | 40 * |
| 41 * Incoming Streams | 41 * Incoming Streams |
| 42 * | 42 * |
| 43 ***************************************************************************
/ | 43 ***************************************************************************
/ |
| 44 | 44 |
| 45 virtual VideoRenderCallback | 45 virtual rtc::VideoSinkInterface<VideoFrame> |
| 46 * AddIncomingRenderStream(const uint32_t streamId, | 46 * AddIncomingRenderStream(const uint32_t streamId, |
| 47 const uint32_t zOrder, | 47 const uint32_t zOrder, |
| 48 const float left, const float top, | 48 const float left, const float top, |
| 49 const float right, const float bottom); | 49 const float right, const float bottom); |
| 50 | 50 |
| 51 virtual int32_t | 51 virtual int32_t |
| 52 DeleteIncomingRenderStream(const uint32_t streamId); | 52 DeleteIncomingRenderStream(const uint32_t streamId); |
| 53 | 53 |
| 54 virtual int32_t | 54 virtual int32_t |
| 55 GetIncomingRenderStreamProperties(const uint32_t streamId, | 55 GetIncomingRenderStreamProperties(const uint32_t streamId, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 CriticalSectionWrapper& _renderLinuxCritsect; | 119 CriticalSectionWrapper& _renderLinuxCritsect; |
| 120 | 120 |
| 121 void* _ptrWindow; | 121 void* _ptrWindow; |
| 122 | 122 |
| 123 // X11 Render | 123 // X11 Render |
| 124 VideoX11Render* _ptrX11Render; | 124 VideoX11Render* _ptrX11Render; |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } // namespace webrtc | 127 } // namespace webrtc |
| 128 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_LINUX_VIDEO_RENDER_LINUX_IMPL
_H_ | 128 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_LINUX_VIDEO_RENDER_LINUX_IMPL
_H_ |
| OLD | NEW |