I didn't find any. These are the arguments that are passed to libvlc_new() in libvlcjni.c. The only one I added is --config.
Code: Select all
const char *argv[] = {
"-I", "dummy",
"--no-osd",
"--no-video-title-show",
"--no-stats",
"--no-plugins-cache",
"--no-drop-late-frames",
"--avcodec-fast",
"--config", "/mnt/sdcard/.automatichandover/vclrc",
enable_time_stretch ? "--audio-time-stretch" : "--no-audio-time-stretch",
use_opensles ? "--aout=opensles" : "--aout=android_audiotrack",
};
libvlc_instance_t *instance = libvlc_new(sizeof(argv) / sizeof(*argv), argv);
Within my access module, I checked that var_InheritString(p_this, "config") returns the right value and the file can be opened for reading.