Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e208377f authored by Ray Chen's avatar Ray Chen
Browse files

Add GPSProcessingMethod tag to ExifInterface.

Change-Id: I7575ae3195dc510e7020368794a66bb064839104
parent 84eb8d2a
Loading
Loading
Loading
Loading
+13 −2
Original line number Diff line number Diff line
@@ -74310,7 +74310,7 @@
 type="float"
 transient="false"
 volatile="false"
 value="0.0010f"
 value="0.001f"
 static="true"
 final="true"
 deprecated="not deprecated"
@@ -83010,6 +83010,17 @@
 visibility="public"
>
</field>
<field name="TAG_GPS_PROCESSING_METHOD"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;GPSProcessingMethod&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="TAG_GPS_TIMESTAMP"
 type="java.lang.String"
 transient="false"
@@ -214703,7 +214714,7 @@
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="arg0" type="T">
<parameter name="t" type="T">
</parameter>
</method>
</interface>
+1 −1
Original line number Diff line number Diff line
@@ -1331,7 +1331,7 @@ public class Camera {
        }

        /**
         * Sets GPS processing method. It will store up to 100 characters
         * Sets GPS processing method. It will store up to 32 characters
         * in JPEG EXIF header.
         *
         * @param processing_method The processing method to get this location.
+2 −0
Original line number Diff line number Diff line
@@ -59,6 +59,8 @@ public class ExifInterface {
    public static final String TAG_WHITE_BALANCE = "WhiteBalance";
    /** Type is rational. */
    public static final String TAG_FOCAL_LENGTH = "FocalLength";
    /** Type is String. Name of GPS processing method used for location finding. */
    public static final String TAG_GPS_PROCESSING_METHOD = "GPSProcessingMethod";

    // Constants used for the Orientation Exif tag.
    public static final int ORIENTATION_UNDEFINED = 0;