blob: 653a7de5457e6bd182484ec73f6032b844a51062 [file] [log] [blame]
/*
* Copyright (C) 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.android.server.usb.descriptors;
/**
* @hide
* An audio class-specific Input Terminal interface.
* see audio10.pdf section 4.3.2.1
*/
public class UsbACInputTerminal extends UsbACTerminal {
private static final String TAG = "ACInputTerminal";
private byte mNrChannels; // 7:1 1 Channel (0x01)
// Number of logical output channels in the
// Terminal’s output audio channel cluster
private int mChannelConfig; // 8:2 Mono (0x0000)
private byte mChannelNames; // 10:1 Unused (0x00)
private byte mTerminal; // 11:1 Unused (0x00)
public UsbACInputTerminal(int length, byte type, byte subtype, byte subclass) {
super(length, type, subtype, subclass);
}
public byte getNrChannels() {
return mNrChannels;
}
public int getChannelConfig() {
return mChannelConfig;
}
public byte getChannelNames() {
return mChannelNames;
}
public byte getTerminal() {
return mTerminal;
}
@Override
public int parseRawDescriptors(ByteStream stream) {
super.parseRawDescriptors(stream);
mNrChannels = stream.getByte();
mChannelConfig = stream.unpackUsbWord();
mChannelNames = stream.getByte();
mTerminal = stream.getByte();
return mLength;
}
}