Home
last modified time | relevance | path

Searched refs:codecTypeValue (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/development/bluetooth/
DBluetoothCodecDialogPreferenceController.java99 int codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_SBC; // default in writeConfigurationValues() local
104 codecTypeValue = getHighestCodec(mBluetoothA2dp, activeDevice, in writeConfigurationValues()
109 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_SBC; in writeConfigurationValues()
113 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_AAC; in writeConfigurationValues()
117 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_APTX; in writeConfigurationValues()
121 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_APTX_HD; in writeConfigurationValues()
125 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_LDAC; in writeConfigurationValues()
129 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_LC3; in writeConfigurationValues()
133 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_OPUS; in writeConfigurationValues()
139 mBluetoothA2dpConfigStore.setCodecType(codecTypeValue); in writeConfigurationValues()
[all …]
DAbstractBluetoothDialogPreferenceController.java200 protected BluetoothCodecConfig getSelectableByCodecType(int codecTypeValue) { in getSelectableByCodecType() argument
208 if (config.getCodecType() == codecTypeValue) { in getSelectableByCodecType()
212 Log.d(TAG, "Unable to find matching codec config, type is " + codecTypeValue); in getSelectableByCodecType()