/* * Copyright (C) 2011 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.media.audiofx; /** * Noise Suppressor (NS). *
Noise suppression (NS) is an audio pre-processing which removes background noise from the * captured signal. The component of the signal considered as noise can be either stationary * (car/airplane engine, AC system) or non-stationary (other peoples conversations, car horn) for * more advanced implementations. *
NS is mostly used by voice communication applications (voice chat, video conferencing, * SIP calls). *
An application creates a NoiseSuppressor object to instantiate and control an NS * engine in the audio framework. *
To attach the NoiseSuppressor to a particular {@link android.media.AudioRecord}, * specify the audio session ID of this AudioRecord when constructing the NoiseSuppressor. * The audio session is retrieved by calling * {@link android.media.AudioRecord#getAudioSessionId()} on the AudioRecord instance. *
On some devices, NS can be inserted by default in the capture path by the platform * according to the {@link android.media.MediaRecorder.AudioSource} used. The application can * query which pre-processings are currently applied to an AudioRecord instance by calling * {@link android.media.audiofx.AudioEffect#queryPreProcessings(int)} with the audio session of the * AudioRecord. *
See {@link android.media.audiofx.AudioEffect} class for more details on * controlling audio effects. * @hide */ public class NoiseSuppressor extends AudioEffect { private final static String TAG = "NoiseSuppressor"; /** * Class constructor. *
The application must catch exceptions when creating an NoiseSuppressor as the * constructor is not guarantied to succeed: *