d91df72f7f
Since 0.28 the android build option is used for a few features that are not useful in Termux (as we don't do video output and JNI isn't available) In 0.27 the option is only used to enable some wrapping of strnlen, as it was broken (but also fixed) long time ago in Android. Therefore instead of the extra patching that do us no good, let us simply build with --disable-android and disable the wrapping. Also use vid=no instead of vo=null in mpv.conf, as the latter does not prevent video decoding.
11 lines
329 B
Plaintext
11 lines
329 B
Plaintext
# Default configuration for mpv
|
|
|
|
# Enable OpenSL ES output, since this should work on all Android devices
|
|
ao=opensles
|
|
|
|
# Increase audio buffer to help with stuttering with bluetooth devices. See #1127.
|
|
audio-buffer=0.5
|
|
|
|
# Disable Video Decode and Output. Termux doesn't support video output (with the exception of "tct").
|
|
vid=no
|