[Android] LibVLC: Mediaplayer: re-indent comments
Thomas Guillem
git at videolan.org
Fri Mar 30 16:51:25 CEST 2018
vlc-android | branch: 3.0.x | Thomas Guillem <thomas at gllm.fr> | Mon Mar 26 14:59:11 2018 +0200| [3e81856de98b00964592767b9b63eabe24ad135f] | committer: Geoffrey Métais
LibVLC: Mediaplayer: re-indent comments
(cherry picked from commit bfa84f3c0fa873dca6b4bef27a1abb9c514b1a22)
> https://code.videolan.org/videolan/vlc-android/commit/3e81856de98b00964592767b9b63eabe24ad135f
---
libvlc/src/org/videolan/libvlc/MediaPlayer.java | 32 ++++++++++++-------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/libvlc/src/org/videolan/libvlc/MediaPlayer.java b/libvlc/src/org/videolan/libvlc/MediaPlayer.java
index 222e9e052..5cd6e8f31 100644
--- a/libvlc/src/org/videolan/libvlc/MediaPlayer.java
+++ b/libvlc/src/org/videolan/libvlc/MediaPlayer.java
@@ -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);
}
More information about the Android
mailing list