summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-02-17 14:50:14 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-02-17 14:50:14 -0800
commit5b025c46158f2b4eb95bc062170b7d585d967d0c (patch)
treeb43600627edbc8c77306b284fce1a693f2971f42 /include
parent95fd0088ccc6f3251424930b8dbb01dbe411c5d8 (diff)
parentcbeebb194b374a5eea2f1c6ed6298c09a937c4cb (diff)
downloadframeworks_base-5b025c46158f2b4eb95bc062170b7d585d967d0c.zip
frameworks_base-5b025c46158f2b4eb95bc062170b7d585d967d0c.tar.gz
frameworks_base-5b025c46158f2b4eb95bc062170b7d585d967d0c.tar.bz2
Merge "A/V synchronization at the beginning of a recording session"
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/AudioSource.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/media/stagefright/AudioSource.h b/include/media/stagefright/AudioSource.h
index b35a6e6..9e6f0e2 100644
--- a/include/media/stagefright/AudioSource.h
+++ b/include/media/stagefright/AudioSource.h
@@ -59,12 +59,12 @@ private:
// After the initial mute, we raise the volume linearly
// over kAutoRampDurationUs.
- kAutoRampDurationUs = 700000,
+ kAutoRampDurationUs = 300000,
// This is the initial mute duration to suppress
// the video recording signal tone
- kAutoRampStartUs = 1000000,
- };
+ kAutoRampStartUs = 0,
+ };
Mutex mLock;
Condition mFrameAvailableCondition;