summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEarl Ou <shunhsingou@google.com>2012-08-30 12:01:05 +0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-08-30 00:54:46 -0700
commit5babc396c3d3692445387864c4ea1740f6d92b06 (patch)
treecd72fca0dafdc36b55f56aa3ab949731ca936a7e
parent5f18b4c19b0d854475bb8cb611fd7c23a3f7a1c5 (diff)
downloadandroid_packages_apps_Gallery2-5babc396c3d3692445387864c4ea1740f6d92b06.tar.gz
android_packages_apps_Gallery2-5babc396c3d3692445387864c4ea1740f6d92b06.tar.bz2
android_packages_apps_Gallery2-5babc396c3d3692445387864c4ea1740f6d92b06.zip
Add prefix to GPS tag in ExifTag
Change-Id: Ib07d2847ddcbed3b06d07afa2a6d5851c27760b1
-rw-r--r--src/com/android/gallery3d/exif/ExifTag.java62
1 files changed, 31 insertions, 31 deletions
diff --git a/src/com/android/gallery3d/exif/ExifTag.java b/src/com/android/gallery3d/exif/ExifTag.java
index fd5826ef5..fad47d678 100644
--- a/src/com/android/gallery3d/exif/ExifTag.java
+++ b/src/com/android/gallery3d/exif/ExifTag.java
@@ -266,37 +266,37 @@ public class ExifTag {
}
public static interface GPS_TAG {
- public static final short GPS_VERSION_ID = 0;
- public static final short GPS_LATITUDE_REF = 1;
- public static final short GPS_LATITUDE = 2;
- public static final short GPS_LONGITUDE_REF = 3;
- public static final short GPS_LONGITUDE = 4;
- public static final short GPS_ALTITUDE_REF = 5;
- public static final short GPS_ALTITUDE = 6;
- public static final short GPS_TIME_STAMP = 7;
- public static final short GPS_SATTELLITES = 8;
- public static final short GPS_STATUS = 9;
- public static final short GPS_MEASURE_MODE = 10;
- public static final short GPS_DOP = 11;
- public static final short GPS_SPEED_REF = 12;
- public static final short GPS_SPEED = 13;
- public static final short GPS_TRACK_REF = 14;
- public static final short GPS_TRACK = 15;
- public static final short GPS_IMG_DIRECTION_REF = 16;
- public static final short GPS_IMG_DIRECTION = 17;
- public static final short GPS_MAP_DATUM = 18;
- public static final short GPS_DEST_LATITUDE_REF = 19;
- public static final short GPS_DEST_LATITUDE = 20;
- public static final short GPS_DEST_LONGITUDE_REF = 21;
- public static final short GPS_DEST_LONGITUDE = 22;
- public static final short GPS_DEST_BEARING_REF = 23;
- public static final short GPS_DEST_BEARING = 24;
- public static final short GPS_DEST_DISTANCE_REF = 25;
- public static final short GPS_DEST_DISTANCE = 26;
- public static final short GPS_PROCESSING_METHOD = 27;
- public static final short GPS_AREA_INFORMATION = 28;
- public static final short GPS_DATA_STAMP = 29;
- public static final short GPS_DIFFERENTIAL = 30;
+ public static final short TAG_GPS_VERSION_ID = 0;
+ public static final short TAG_GPS_LATITUDE_REF = 1;
+ public static final short TAG_GPS_LATITUDE = 2;
+ public static final short TAG_GPS_LONGITUDE_REF = 3;
+ public static final short TAG_GPS_LONGITUDE = 4;
+ public static final short TAG_GPS_ALTITUDE_REF = 5;
+ public static final short TAG_GPS_ALTITUDE = 6;
+ public static final short TAG_GPS_TIME_STAMP = 7;
+ public static final short TAG_GPS_SATTELLITES = 8;
+ public static final short TAG_GPS_STATUS = 9;
+ public static final short TAG_GPS_MEASURE_MODE = 10;
+ public static final short TAG_GPS_DOP = 11;
+ public static final short TAG_GPS_SPEED_REF = 12;
+ public static final short TAG_GPS_SPEED = 13;
+ public static final short TAG_GPS_TRACK_REF = 14;
+ public static final short TAG_GPS_TRACK = 15;
+ public static final short TAG_GPS_IMG_DIRECTION_REF = 16;
+ public static final short TAG_GPS_IMG_DIRECTION = 17;
+ public static final short TAG_GPS_MAP_DATUM = 18;
+ public static final short TAG_GPS_DEST_LATITUDE_REF = 19;
+ public static final short TAG_GPS_DEST_LATITUDE = 20;
+ public static final short TAG_GPS_DEST_LONGITUDE_REF = 21;
+ public static final short TAG_GPS_DEST_LONGITUDE = 22;
+ public static final short TAG_GPS_DEST_BEARING_REF = 23;
+ public static final short TAG_GPS_DEST_BEARING = 24;
+ public static final short TAG_GPS_DEST_DISTANCE_REF = 25;
+ public static final short TAG_GPS_DEST_DISTANCE = 26;
+ public static final short TAG_GPS_PROCESSING_METHOD = 27;
+ public static final short TAG_GPS_AREA_INFORMATION = 28;
+ public static final short TAG_GPS_DATA_STAMP = 29;
+ public static final short TAG_GPS_DIFFERENTIAL = 30;
public static final String GPS_REF_NORTH = "N";
public static final String GPS_REF_SOUTH = "S";