Home
last modified time | relevance | path

Searched refs:sadBytes (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java677 byte[] sadBytes = HexDump.hexStringToByteArray(sad); in readSad()
678 if (sadBytes.length != 3) { in readSad()
679 Slog.w(TAG, "SAD byte array length is not 3. Length = " + sadBytes.length); in readSad()
682 return sadBytes; in readSad()
H A DHdmiCecLocalDeviceAudioSystem.java502 byte[] sadBytes; in handleRequestShortAudioDescriptor()
504 sadBytes = getSupportedShortAudioDescriptorsFromConfig(config, audioCodecs); in handleRequestShortAudioDescriptor()
511 sadBytes = getSupportedShortAudioDescriptors(deviceInfo, audioCodecs); in handleRequestShortAudioDescriptor()
514 if (sadBytes.length == 0) { in handleRequestShortAudioDescriptor()
519 getDeviceInfo().getLogicalAddress(), message.getSource(), sadBytes)); in handleRequestShortAudioDescriptor() local
H A DHdmiCecMessageBuilder.java467 static HdmiCecMessage buildReportShortAudioDescriptor(int src, int des, byte[] sadBytes) { in buildReportShortAudioDescriptor() argument
469 src, des, Constants.MESSAGE_REPORT_SHORT_AUDIO_DESCRIPTOR, sadBytes); in buildReportShortAudioDescriptor()