Example usage for android.media AudioTrack subclass-usage

List of usage examples for android.media AudioTrack subclass-usage

Introduction

In this page you can find the example usage for android.media AudioTrack subclass-usage.

Usage

From source file com.n0n3m4.q3e.Q3ECallbackObj.java

class Q3EAudioTrack extends AudioTrack {
    public Q3EAudioTrack(int streamType, int sampleRateInHz, int channelConfig, int audioFormat,
            int bufferSizeInBytes, int mode) throws IllegalStateException {
        super(streamType, sampleRateInHz, channelConfig, audioFormat, bufferSizeInBytes, mode);
    }