summaryrefslogtreecommitdiffstats
path: root/media/libmediaplayerservice/StagefrightRecorder.h
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-10-05 20:02:05 -0700
committerJames Dong <jdong@google.com>2011-10-05 20:43:52 -0700
commitb832a03d563dd000faa44f2577e92237525edc32 (patch)
tree8b8732367ca530715553bd1e215a48161581b8a1 /media/libmediaplayerservice/StagefrightRecorder.h
parentec35a1416472865dbebc22b10199ad718ed2cc95 (diff)
downloadframeworks_av-b832a03d563dd000faa44f2577e92237525edc32.zip
frameworks_av-b832a03d563dd000faa44f2577e92237525edc32.tar.gz
frameworks_av-b832a03d563dd000faa44f2577e92237525edc32.tar.bz2
Fix an issue where we should allow negative values but did not
Change-Id: Ia8d718b4e6aec4c17db86e30134132f767fd72c5 related-to-bug: 5419527
Diffstat (limited to 'media/libmediaplayerservice/StagefrightRecorder.h')
-rw-r--r--media/libmediaplayerservice/StagefrightRecorder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libmediaplayerservice/StagefrightRecorder.h b/media/libmediaplayerservice/StagefrightRecorder.h
index 5c5f05c..ec5ce7e 100644
--- a/media/libmediaplayerservice/StagefrightRecorder.h
+++ b/media/libmediaplayerservice/StagefrightRecorder.h
@@ -173,8 +173,8 @@ private:
status_t setParamMaxFileDurationUs(int64_t timeUs);
status_t setParamMaxFileSizeBytes(int64_t bytes);
status_t setParamMovieTimeScale(int32_t timeScale);
- status_t setParamGeoDataLongitude(int32_t longitudex10000);
- status_t setParamGeoDataLatitude(int32_t latitudex10000);
+ status_t setParamGeoDataLongitude(int64_t longitudex10000);
+ status_t setParamGeoDataLatitude(int64_t latitudex10000);
void clipVideoBitRate();
void clipVideoFrameRate();
void clipVideoFrameWidth();