Skip to content

Commit a910390

Browse files
Eino-Ville TalvalaAndroid (Google) Code Review
authored andcommitted
Merge "Camera: Add SCENE_MODE_HDR." into jb-mr1-dev
2 parents 5cf8bd7 + da2f0ea commit a910390

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

core/java/android/hardware/Camera.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1806,6 +1806,15 @@ public class Parameters {
18061806
*/
18071807
public static final String SCENE_MODE_BARCODE = "barcode";
18081808

1809+
/**
1810+
* Capture a scene using high dynamic range imaging techniques. The
1811+
* camera will return an image that has an extended dynamic range
1812+
* compared to a regular capture. Capturing such an image may take
1813+
* longer than a regular capture.
1814+
* @hide
1815+
*/
1816+
public static final String SCENE_MODE_HDR = "hdr";
1817+
18091818
/**
18101819
* Auto-focus mode. Applications should call {@link
18111820
* #autoFocus(AutoFocusCallback)} to start the focus in this mode.
@@ -2809,6 +2818,7 @@ public List<String> getSupportedAntibanding() {
28092818
* @see #SCENE_MODE_SPORTS
28102819
* @see #SCENE_MODE_PARTY
28112820
* @see #SCENE_MODE_CANDLELIGHT
2821+
* @see #SCENE_MODE_BARCODE
28122822
*/
28132823
public String getSceneMode() {
28142824
return get(KEY_SCENE_MODE);

0 commit comments

Comments
 (0)