Coming back to a (presumably) bug that has been introduced in 3.0.0, I'm hoping to find salvation with 3.0.3... no luck so far.
While LibVLC (on Windows) had no problem with this feature, vflip on 3.x just doesn't want to work.
Code: Select all
const Char *l_args[] =
{
"--video-filter=transform",
"--transform-type=vflip",
};
m_VLC_Instance = libvlc_new(sizeof(l_args) / sizeof(l_args[0]), l_args);
and
Code: Select all
libvlc_media_add_option(m_VLC_Media, ":video-filter=transform");
libvlc_media_add_option(m_VLC_Media, ":transform-type=vflip");
Any insight would be greatly appreciated.
Thank you,