오디오에서 byte[] 회전short[]
476 단어 안드로이드 질문
그러나 오디오 흐름에서byte수 그룹이short수 그룹을 변환하기 때문에 크기단에 문제가 있습니다.
대부분의 방법을 사용할 수 없기 때문에 특별히 기록을 해 두십시오.
public static short[] bytesToShort(byte[] bytes) {
if (bytes == null) {
return null;
}
short[] shorts = new short[bytes.length / 2];
ByteBuffer.wrap(bytes).order(ByteOrder.LITTLE_ENDIAN).asShortBuffer().get(shorts);
return shorts;
}