blob: 1e90a7571afd9c01806e22504b13d539224de912 [file] [log] [blame]
/*
* Copyright 2017 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 com.google.sample.oboe.manualtest;
import android.util.Log;
public class AudioOutputTester extends AudioStreamTester {
protected OboeAudioOutputStream mOboeAudioOutputStream;
private static AudioOutputTester mInstance;
public static synchronized AudioOutputTester getInstance() {
if (mInstance == null) {
mInstance = new AudioOutputTester();
}
return mInstance;
}
private AudioOutputTester() {
super();
Log.i(TapToToneActivity.TAG, "create OboeAudioOutputStream ---------");
mOboeAudioOutputStream = new OboeAudioOutputStream();
mCurrentAudioStream = mOboeAudioOutputStream;
requestedConfiguration.setDirection(StreamConfiguration.DIRECTION_OUTPUT);
}
public void trigger() {
mOboeAudioOutputStream.trigger();
}
public void setChannelEnabled(int channelIndex, boolean enabled) {
mOboeAudioOutputStream.setChannelEnabled(channelIndex, enabled);
}
public void setSignalType(int type) {
mOboeAudioOutputStream.setSignalType(type);
}
}