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.java94 int codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_SBC; // default in writeConfigurationValues() local
99 codecTypeValue = getHighestCodec(mBluetoothA2dp, activeDevice, in writeConfigurationValues()
104 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_SBC; in writeConfigurationValues()
108 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_AAC; in writeConfigurationValues()
112 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_APTX; in writeConfigurationValues()
116 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_APTX_HD; in writeConfigurationValues()
120 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_LDAC; in writeConfigurationValues()
124 codecTypeValue = BluetoothCodecConfig.SOURCE_CODEC_TYPE_LC3; in writeConfigurationValues()
128 codecTypeValue = SOURCE_CODEC_TYPE_OPUS; // TODO update in U in writeConfigurationValues()
134 mBluetoothA2dpConfigStore.setCodecType(codecTypeValue); in writeConfigurationValues()
[all …]
DAbstractBluetoothDialogPreferenceController.java201 protected BluetoothCodecConfig getSelectableByCodecType(int codecTypeValue) { in getSelectableByCodecType() argument
209 if (config.getCodecType() == codecTypeValue) { in getSelectableByCodecType()
213 Log.d(TAG, "Unable to find matching codec config, type is " + codecTypeValue); in getSelectableByCodecType()