diff options
author | James Dong <jdong@google.com> | 2010-10-01 17:14:23 -0700 |
---|---|---|
committer | James Dong <jdong@google.com> | 2010-10-01 17:14:23 -0700 |
commit | d0ea545d8357e7d86ad5f19cb2c6499c91786473 (patch) | |
tree | 19fcb23a99680467103c95f5891a8a3740339340 /media | |
parent | 44d9848d6656777a18019223e0d35f2fcc67719a (diff) | |
download | frameworks_av-d0ea545d8357e7d86ad5f19cb2c6499c91786473.zip frameworks_av-d0ea545d8357e7d86ad5f19cb2c6499c91786473.tar.gz frameworks_av-d0ea545d8357e7d86ad5f19cb2c6499c91786473.tar.bz2 |
Turn off media time adjustment by default
Change-Id: I1f8021d605d0fd896e0639607a84e3f7c459612e
Diffstat (limited to 'media')
-rw-r--r-- | media/libstagefright/MPEG4Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/MPEG4Writer.cpp b/media/libstagefright/MPEG4Writer.cpp index e6c2f7e..546df47 100644 --- a/media/libstagefright/MPEG4Writer.cpp +++ b/media/libstagefright/MPEG4Writer.cpp @@ -1118,7 +1118,7 @@ status_t MPEG4Writer::Track::start(MetaData *params) { startTimeUs = 0; } - mIsRealTimeRecording = true; + mIsRealTimeRecording = false; { int32_t isNotRealTime; if (params && params->findInt32(kKeyNotRealTime, &isNotRealTime)) { |