diff options
author | Wu-cheng Li <wuchengli@google.com> | 2010-05-21 17:52:42 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2010-05-24 17:31:17 +0800 |
commit | bd329ddbea1860a2a859f065d7c405717c7d8133 (patch) | |
tree | 410ecf83f1b3bcebbe20913aee65d61219cb0e99 /include/camera | |
parent | e12a2a47059664f78e1bea4445d8a935571663ba (diff) | |
download | frameworks_base-bd329ddbea1860a2a859f065d7c405717c7d8133.zip frameworks_base-bd329ddbea1860a2a859f065d7c405717c7d8133.tar.gz frameworks_base-bd329ddbea1860a2a859f065d7c405717c7d8133.tar.bz2 |
Improve GPS EXIF parameters comments.
Change-Id: I33f7487821b283fe746baa09a71a703ae763d66d
Diffstat (limited to 'include/camera')
-rw-r--r-- | include/camera/CameraParameters.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/camera/CameraParameters.h b/include/camera/CameraParameters.h index 20eef72..faf6155 100644 --- a/include/camera/CameraParameters.h +++ b/include/camera/CameraParameters.h @@ -119,14 +119,17 @@ public: // should not set default value for this parameter. // Example value: "0" or "90" or "180" or "270". Write only. static const char KEY_ROTATION[]; - // GPS latitude coordinate. This will be stored in JPEG EXIF header. - // Example value: "25.032146". Write only. + // GPS latitude coordinate. GPSLatitude and GPSLatitudeRef will be stored in + // JPEG EXIF header. + // Example value: "25.032146" or "-33.462809". Write only. static const char KEY_GPS_LATITUDE[]; - // GPS longitude coordinate. This will be stored in JPEG EXIF header. - // Example value: "121.564448". Write only. + // GPS longitude coordinate. GPSLongitude and GPSLongitudeRef will be stored + // in JPEG EXIF header. + // Example value: "121.564448" or "-70.660286". Write only. static const char KEY_GPS_LONGITUDE[]; - // GPS altitude. This will be stored in JPEG EXIF header. - // Example value: "21.0". Write only. + // GPS altitude. GPSAltitude and GPSAltitudeRef will be stored in JPEG EXIF + // header. + // Example value: "21.0" or "-5". Write only. static const char KEY_GPS_ALTITUDE[]; // GPS timestamp (UTC in seconds since January 1, 1970). This should be // stored in JPEG EXIF header. |