Home | History | Annotate | Download | only in cts

Lines Matching refs:microphone

843     private void printMicrophoneInfo(MicrophoneInfo microphone) {
844 Log.i(TAG, "deviceId:" + microphone.getDescription());
845 Log.i(TAG, "portId:" + microphone.getId());
846 Log.i(TAG, "type:" + microphone.getType());
847 Log.i(TAG, "address:" + microphone.getAddress());
848 Log.i(TAG, "deviceLocation:" + microphone.getLocation());
849 Log.i(TAG, "deviceGroup:" + microphone.getGroup()
850 + " index:" + microphone.getIndexInTheGroup());
851 MicrophoneInfo.Coordinate3F position = microphone.getPosition();
853 MicrophoneInfo.Coordinate3F orientation = microphone.getOrientation();
855 Log.i(TAG, "frequencyResponse:" + microphone.getFrequencyResponse());
856 Log.i(TAG, "channelMapping:" + microphone.getChannelMapping());
857 Log.i(TAG, "sensitivity:" + microphone.getSensitivity());
858 Log.i(TAG, "max spl:" + microphone.getMaxSpl());
859 Log.i(TAG, "min spl:" + microphone.getMinSpl());
860 Log.i(TAG, "directionality:" + microphone.getDirectionality());