diff options
author | ztenghui <ztenghui@google.com> | 2013-04-12 13:50:38 -0700 |
---|---|---|
committer | ztenghui <ztenghui@google.com> | 2013-04-15 10:48:33 -0700 |
commit | e756d9753c7cffe2e9731a31fa98a3e8f37151c9 (patch) | |
tree | d8d6d13587b902e574690740b850eaf1166e7759 /libvideoeditor | |
parent | e574eecea416c813d539a0977d5393c3ed291a1c (diff) | |
download | frameworks_av-e756d9753c7cffe2e9731a31fa98a3e8f37151c9.zip frameworks_av-e756d9753c7cffe2e9731a31fa98a3e8f37151c9.tar.gz frameworks_av-e756d9753c7cffe2e9731a31fa98a3e8f37151c9.tar.bz2 |
MediaMuxer prefer not to use the MPEG4Writer in real time recording mode.
By default, MPEG4Write will keep running in real time recording mode.
bug:8598944
Change-Id: Idf7fbd4e0feb7763660a74279ba8817b79098aaf
Diffstat (limited to 'libvideoeditor')
-rwxr-xr-x | libvideoeditor/vss/stagefrightshells/src/VideoEditorUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvideoeditor/vss/stagefrightshells/src/VideoEditorUtils.cpp b/libvideoeditor/vss/stagefrightshells/src/VideoEditorUtils.cpp index 5309bd4..5a7237d 100755 --- a/libvideoeditor/vss/stagefrightshells/src/VideoEditorUtils.cpp +++ b/libvideoeditor/vss/stagefrightshells/src/VideoEditorUtils.cpp @@ -189,8 +189,8 @@ void displayMetaData(const sp<MetaData> meta) { if (meta->findInt64(kKeyTrackTimeStatus, &int64Data)) { LOG1("displayMetaData kKeyTrackTimeStatus %lld", int64Data); } - if (meta->findInt32(kKeyNotRealTime, &int32Data)) { - LOG1("displayMetaData kKeyNotRealTime %d", int32Data); + if (meta->findInt32(kKeyRealTimeRecording, &int32Data)) { + LOG1("displayMetaData kKeyRealTimeRecording %d", int32Data); } } |