summaryrefslogtreecommitdiffstats
path: root/libvideoeditor
diff options
context:
space:
mode:
authorztenghui <ztenghui@google.com>2013-04-12 13:50:38 -0700
committerztenghui <ztenghui@google.com>2013-04-15 10:48:33 -0700
commitde05c8eab188e98798f2b9c3dfac53dbc18ef584 (patch)
tree5f1023f6cf5770bc3cdbbda03af68a62ff2eebcf /libvideoeditor
parent848621d519636e2abdb8575ba0f964efc53da0d5 (diff)
downloadframeworks_av-de05c8eab188e98798f2b9c3dfac53dbc18ef584.zip
frameworks_av-de05c8eab188e98798f2b9c3dfac53dbc18ef584.tar.gz
frameworks_av-de05c8eab188e98798f2b9c3dfac53dbc18ef584.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-xlibvideoeditor/vss/stagefrightshells/src/VideoEditorUtils.cpp4
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);
}
}