| 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 |
| 11 #ifndef WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_VIDEO_RENDER_IMPL_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_VIDEO_RENDER_IMPL_H_ |
| 12 #define WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_VIDEO_RENDER_IMPL_H_ | 12 #define WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_VIDEO_RENDER_IMPL_H_ |
| 13 | 13 |
| 14 #include <map> | 14 #include <map> |
| 15 | 15 |
| 16 #include "webrtc/engine_configurations.h" | 16 #include "webrtc/engine_configurations.h" |
| 17 #include "webrtc/modules/video_render/include/video_render.h" | 17 #include "webrtc/modules/video_render/video_render.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 class CriticalSectionWrapper; | 20 class CriticalSectionWrapper; |
| 21 class IncomingVideoStream; | 21 class IncomingVideoStream; |
| 22 class IVideoRender; | 22 class IVideoRender; |
| 23 | 23 |
| 24 // Class definitions | 24 // Class definitions |
| 25 class ModuleVideoRenderImpl: public VideoRender | 25 class ModuleVideoRenderImpl: public VideoRender |
| 26 { | 26 { |
| 27 public: | 27 public: |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 bool _fullScreen; | 206 bool _fullScreen; |
| 207 | 207 |
| 208 IVideoRender* _ptrRenderer; | 208 IVideoRender* _ptrRenderer; |
| 209 typedef std::map<uint32_t, IncomingVideoStream*> IncomingVideoStreamMap; | 209 typedef std::map<uint32_t, IncomingVideoStream*> IncomingVideoStreamMap; |
| 210 IncomingVideoStreamMap _streamRenderMap; | 210 IncomingVideoStreamMap _streamRenderMap; |
| 211 }; | 211 }; |
| 212 | 212 |
| 213 } // namespace webrtc | 213 } // namespace webrtc |
| 214 | 214 |
| 215 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_VIDEO_RENDER_IMPL_H_ | 215 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_VIDEO_RENDER_IMPL_H_ |
| OLD | NEW |