Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(625)

Side by Side Diff: content/renderer/media/media_stream_video_track.cc

Issue 2590193002: Add FacingMode to MediaStreamTrack.getSettings() (Closed)
Patch Set: Layout test, with TODO Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/renderer/media/media_stream_video_track_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/media/media_stream_video_track.h" 5 #include "content/renderer/media/media_stream_video_track.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 301
302 void MediaStreamVideoTrack::getSettings( 302 void MediaStreamVideoTrack::getSettings(
303 blink::WebMediaStreamTrack::Settings& settings) { 303 blink::WebMediaStreamTrack::Settings& settings) {
304 if (source_) { 304 if (source_) {
305 const media::VideoCaptureFormat* format = source_->GetCurrentFormat(); 305 const media::VideoCaptureFormat* format = source_->GetCurrentFormat();
306 if (format) { 306 if (format) {
307 settings.frameRate = format->frame_rate; 307 settings.frameRate = format->frame_rate;
308 settings.width = format->frame_size.width(); 308 settings.width = format->frame_size.width();
309 settings.height = format->frame_size.height(); 309 settings.height = format->frame_size.height();
310 } 310 }
311 switch (source_->device_info().device.video_facing) {
312 case MEDIA_VIDEO_FACING_NONE:
313 settings.facingMode = blink::WebMediaStreamTrack::FacingMode::None;
314 break;
315 case MEDIA_VIDEO_FACING_USER:
316 settings.facingMode = blink::WebMediaStreamTrack::FacingMode::User;
317 break;
318 case MEDIA_VIDEO_FACING_ENVIRONMENT:
319 settings.facingMode =
320 blink::WebMediaStreamTrack::FacingMode::Environment;
321 break;
322 default:
323 settings.facingMode = blink::WebMediaStreamTrack::FacingMode::None;
324 break;
325 }
311 } 326 }
312 // TODO(hta): Extract the real value. 327 // TODO(hta): Extract the real value.
313 settings.deviceId = blink::WebString("video device ID"); 328 settings.deviceId = blink::WebString("video device ID");
314 } 329 }
315 330
316 void MediaStreamVideoTrack::OnReadyStateChanged( 331 void MediaStreamVideoTrack::OnReadyStateChanged(
317 blink::WebMediaStreamSource::ReadyState state) { 332 blink::WebMediaStreamSource::ReadyState state) {
318 DCHECK(main_render_thread_checker_.CalledOnValidThread()); 333 DCHECK(main_render_thread_checker_.CalledOnValidThread());
319 for (auto* sink : sinks_) 334 for (auto* sink : sinks_)
320 sink->OnReadyStateChanged(state); 335 sink->OnReadyStateChanged(state);
321 } 336 }
322 337
323 } // namespace content 338 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/media_stream_video_track_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698