I need to flip the video in order to render to a texture using OpenGL.
With VLC 2.2.4 on windows 8.1 I do:
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);
Thank you,