Skip to content
Snippets Groups Projects
Commit bfa84f3c authored by Thomas Guillem's avatar Thomas Guillem Committed by Geoffrey Métais
Browse files

LibVLC: Mediaplayer: re-indent comments

parent 47b50ec3
No related branches found
No related tags found
No related merge requests found
......@@ -764,22 +764,22 @@ public class MediaPlayer extends VLCObject<MediaPlayer.Event> {
return ret;
}
/**
* Configures an explicit audio output device.
* Audio output will be moved to the device specified by the device identifier string.
*
* Available devices for the "android_audiotrack" module (the default) are
* "stereo": Up to 2 channels (compat mode).
* "pcm": Up to 8 channels.
* "encoded": Up to 8 channels, passthrough for every encodings if available.
* "encoded:ENCODING_FLAGS_MASK": passthrough for every encodings specified by
* ENCODING_FLAGS_MASK. This extra value is a long that contains binary-shifted
* AudioFormat.ENCODING_* values.
*
* Calling this method will disable the encoding detection (see {@link #setAudioOutput}).
*
* @return true on success.
*/
/**
* Configures an explicit audio output device.
* Audio output will be moved to the device specified by the device identifier string.
*
* Available devices for the "android_audiotrack" module (the default) are
* "stereo": Up to 2 channels (compat mode).
* "pcm": Up to 8 channels.
* "encoded": Up to 8 channels, passthrough for every encodings if available.
* "encoded:ENCODING_FLAGS_MASK": passthrough for every encodings specified by
* ENCODING_FLAGS_MASK. This extra value is a long that contains binary-shifted
* AudioFormat.ENCODING_* values.
*
* Calling this method will disable the encoding detection (see {@link #setAudioOutput} and {@link #setAudioDigitalOutputEnabled(boolean)}).
*
* @return true on success.
*/
public boolean setAudioOutputDevice(String id) {
return setAudioOutputDeviceInternal(id, true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment