diff options
author | ztenghui <ztenghui@google.com> | 2013-04-15 18:36:01 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-04-15 18:36:01 +0000 |
commit | 8f1efee1c17e997af5ea3c46c62b3ae106b18264 (patch) | |
tree | 18392c33567980ddbb6fc193817113489027f335 /libvideoeditor/vss | |
parent | 5ce9c299a64a1568165fc66adb2cf68d89198a90 (diff) | |
parent | de05c8eab188e98798f2b9c3dfac53dbc18ef584 (diff) | |
download | frameworks_av-8f1efee1c17e997af5ea3c46c62b3ae106b18264.zip frameworks_av-8f1efee1c17e997af5ea3c46c62b3ae106b18264.tar.gz frameworks_av-8f1efee1c17e997af5ea3c46c62b3ae106b18264.tar.bz2 |
Merge "MediaMuxer prefer not to use the MPEG4Writer in real time recording mode." into jb-mr2-dev
Diffstat (limited to 'libvideoeditor/vss')
-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); } } |