| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Ericsson AB. All rights reserved. | 3 * Copyright (C) 2011 Ericsson AB. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 m_component->getSettings(platformSettings); | 221 m_component->getSettings(platformSettings); |
| 222 if (platformSettings.hasFrameRate()) { | 222 if (platformSettings.hasFrameRate()) { |
| 223 settings.setFrameRate(platformSettings.frameRate); | 223 settings.setFrameRate(platformSettings.frameRate); |
| 224 } | 224 } |
| 225 if (platformSettings.hasWidth()) { | 225 if (platformSettings.hasWidth()) { |
| 226 settings.setWidth(platformSettings.width); | 226 settings.setWidth(platformSettings.width); |
| 227 } | 227 } |
| 228 if (platformSettings.hasHeight()) { | 228 if (platformSettings.hasHeight()) { |
| 229 settings.setHeight(platformSettings.height); | 229 settings.setHeight(platformSettings.height); |
| 230 } | 230 } |
| 231 if (RuntimeEnabledFeatures::mediaCaptureDepthEnabled() && |
| 232 m_component->source()->type() == MediaStreamSource::TypeVideo) { |
| 233 if (platformSettings.hasDepthNear()) |
| 234 settings.setDepthNear(platformSettings.depthNear); |
| 235 if (platformSettings.hasDepthFar()) |
| 236 settings.setDepthFar(platformSettings.depthFar); |
| 237 if (platformSettings.hasFocalLengthX()) |
| 238 settings.setFocalLengthX(platformSettings.focalLengthX); |
| 239 if (platformSettings.hasFocalLengthY()) |
| 240 settings.setFocalLengthY(platformSettings.focalLengthY); |
| 241 } |
| 231 settings.setDeviceId(platformSettings.deviceId); | 242 settings.setDeviceId(platformSettings.deviceId); |
| 232 } | 243 } |
| 233 | 244 |
| 234 bool MediaStreamTrack::ended() const { | 245 bool MediaStreamTrack::ended() const { |
| 235 return m_stopped || (m_readyState == MediaStreamSource::ReadyStateEnded); | 246 return m_stopped || (m_readyState == MediaStreamSource::ReadyStateEnded); |
| 236 } | 247 } |
| 237 | 248 |
| 238 void MediaStreamTrack::sourceChangedState() { | 249 void MediaStreamTrack::sourceChangedState() { |
| 239 if (ended()) | 250 if (ended()) |
| 240 return; | 251 return; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 } | 325 } |
| 315 | 326 |
| 316 DEFINE_TRACE(MediaStreamTrack) { | 327 DEFINE_TRACE(MediaStreamTrack) { |
| 317 visitor->trace(m_registeredMediaStreams); | 328 visitor->trace(m_registeredMediaStreams); |
| 318 visitor->trace(m_component); | 329 visitor->trace(m_component); |
| 319 EventTargetWithInlineData::trace(visitor); | 330 EventTargetWithInlineData::trace(visitor); |
| 320 ContextLifecycleObserver::trace(visitor); | 331 ContextLifecycleObserver::trace(visitor); |
| 321 } | 332 } |
| 322 | 333 |
| 323 } // namespace blink | 334 } // namespace blink |
| OLD | NEW |