diff options
author | James Dong <jdong@google.com> | 2011-01-04 17:34:44 -0800 |
---|---|---|
committer | James Dong <jdong@google.com> | 2011-01-04 17:34:44 -0800 |
commit | 91dcf1510491c4128f506a0d28e64de5ecbf459d (patch) | |
tree | 0886108cbd43dd72295de19b99d6fa204e797242 | |
parent | 0f01764099d7a65b8921725df3340140f9fc4cd5 (diff) | |
download | frameworks_av-91dcf1510491c4128f506a0d28e64de5ecbf459d.zip frameworks_av-91dcf1510491c4128f506a0d28e64de5ecbf459d.tar.gz frameworks_av-91dcf1510491c4128f506a0d28e64de5ecbf459d.tar.bz2 |
Suppress the recording sound in the recorded video
bug - 3309194
Change-Id: Ib8fb248943bc22f963d67537bfdbc6056c5a159b
-rw-r--r-- | include/media/stagefright/AudioSource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/media/stagefright/AudioSource.h b/include/media/stagefright/AudioSource.h index a5cec78..d484d60 100644 --- a/include/media/stagefright/AudioSource.h +++ b/include/media/stagefright/AudioSource.h @@ -54,11 +54,11 @@ private: // After the initial mute, we raise the volume linearly // over kAutoRampDurationUs. - kAutoRampDurationUs = 300000, + kAutoRampDurationUs = 700000, // This is the initial mute duration to suppress // the video recording signal tone - kAutoRampStartUs = 700000, + kAutoRampStartUs = 1000000, }; AudioRecord *mRecord; |