| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 break; | 112 break; |
| 113 } | 113 } |
| 114 } | 114 } |
| 115 } | 115 } |
| 116 | 116 |
| 117 int64_t ModuleVideoRenderImpl::TimeUntilNextProcess() | 117 int64_t ModuleVideoRenderImpl::TimeUntilNextProcess() |
| 118 { | 118 { |
| 119 // Not used | 119 // Not used |
| 120 return 50; | 120 return 50; |
| 121 } | 121 } |
| 122 int32_t ModuleVideoRenderImpl::Process() | 122 void ModuleVideoRenderImpl::Process() {} |
| 123 { | |
| 124 // Not used | |
| 125 return 0; | |
| 126 } | |
| 127 | 123 |
| 128 void* | 124 void* |
| 129 ModuleVideoRenderImpl::Window() | 125 ModuleVideoRenderImpl::Window() |
| 130 { | 126 { |
| 131 CriticalSectionScoped cs(&_moduleCrit); | 127 CriticalSectionScoped cs(&_moduleCrit); |
| 132 return _ptrWindow; | 128 return _ptrWindow; |
| 133 } | 129 } |
| 134 | 130 |
| 135 int32_t ModuleVideoRenderImpl::ChangeWindow(void* window) | 131 int32_t ModuleVideoRenderImpl::ChangeWindow(void* window) |
| 136 { | 132 { |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 // This stream doesn't exist | 591 // This stream doesn't exist |
| 596 WEBRTC_TRACE(kTraceError, kTraceVideoRenderer, _id, | 592 WEBRTC_TRACE(kTraceError, kTraceVideoRenderer, _id, |
| 597 "%s: stream doesn't exist", __FUNCTION__); | 593 "%s: stream doesn't exist", __FUNCTION__); |
| 598 return -1; | 594 return -1; |
| 599 } | 595 } |
| 600 assert(item->second != NULL); | 596 assert(item->second != NULL); |
| 601 return item->second->SetTimeoutImage(videoFrame, timeout); | 597 return item->second->SetTimeoutImage(videoFrame, timeout); |
| 602 } | 598 } |
| 603 | 599 |
| 604 } // namespace webrtc | 600 } // namespace webrtc |
| OLD | NEW |