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

Side by Side Diff: third_party/WebKit/public/platform/WebMediaStreamTrack.h

Issue 2606983002: Media Capture Depth Stream Extensions API: focal length and depth range. (Closed)
Patch Set: 80-char line fix in test html. Created 3 years, 10 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 | « third_party/WebKit/public/platform/WebMediaConstraints.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 30 matching lines...) Expand all
41 41
42 class WebMediaStreamTrack { 42 class WebMediaStreamTrack {
43 public: 43 public:
44 enum class FacingMode { None, User, Environment, Left, Right }; 44 enum class FacingMode { None, User, Environment, Left, Right };
45 45
46 struct Settings { 46 struct Settings {
47 bool hasFrameRate() { return frameRate >= 0.0; } 47 bool hasFrameRate() { return frameRate >= 0.0; }
48 bool hasWidth() { return width >= 0; } 48 bool hasWidth() { return width >= 0; }
49 bool hasHeight() { return height >= 0; } 49 bool hasHeight() { return height >= 0; }
50 bool hasFacingMode() { return facingMode != FacingMode::None; } 50 bool hasFacingMode() { return facingMode != FacingMode::None; }
51 bool hasFocalLengthX() { return focalLengthX >= 0.0; }
52 bool hasFocalLengthY() { return focalLengthY >= 0.0; }
53 bool hasDepthNear() { return depthNear >= 0.0; }
54 bool hasDepthFar() { return depthFar >= 0.0; }
51 // The variables are read from 55 // The variables are read from
52 // MediaStreamTrack::GetSettings only. 56 // MediaStreamTrack::GetSettings only.
53 double frameRate = -1.0; 57 double frameRate = -1.0;
54 long width = -1; 58 long width = -1;
55 long height = -1; 59 long height = -1;
56 WebString deviceId; 60 WebString deviceId;
57 FacingMode facingMode = FacingMode::None; 61 FacingMode facingMode = FacingMode::None;
62 // Media Capture Depth Stream Extensions.
63 double focalLengthX = -1.0;
64 double focalLengthY = -1.0;
65 double depthNear = -1.0;
66 double depthFar = -1.0;
58 }; 67 };
59 68
60 class TrackData { 69 class TrackData {
61 public: 70 public:
62 TrackData() {} 71 TrackData() {}
63 virtual ~TrackData() {} 72 virtual ~TrackData() {}
64 virtual void getSettings(Settings&) = 0; 73 virtual void getSettings(Settings&) = 0;
65 }; 74 };
66 75
67 enum class ContentHintType { 76 enum class ContentHintType {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 BLINK_PLATFORM_EXPORT operator MediaStreamComponent*() const; 124 BLINK_PLATFORM_EXPORT operator MediaStreamComponent*() const;
116 #endif 125 #endif
117 126
118 private: 127 private:
119 WebPrivatePtr<MediaStreamComponent> m_private; 128 WebPrivatePtr<MediaStreamComponent> m_private;
120 }; 129 };
121 130
122 } // namespace blink 131 } // namespace blink
123 132
124 #endif // WebMediaStreamTrack_h 133 #endif // WebMediaStreamTrack_h
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/WebMediaConstraints.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698