Currently I can onle change aspect ratio to some standard values like '1:1' or '4:3'. Setting a custom value using libvlc_video_set_aspect_ratio while video is playing seems to have no effect.
In order to apply custom settings I have to restart the playback:
Code: Select all
libvlc_video_set_aspect_ratio(vlcPlayer, /* some custom value */);
libvlc_media_player_stop(vlcPlayer);
libvlc_media_player_play(vlcPlayer);