I notice that starting w/ v2.0, the call to libvlc_media_player_get_time gives undeterministic time. I have a need to know precisely what time is VLC currently on (+/- 10 ms desired). In v1.1, the call to libvlc_media_player_get_time always give T where T is {exact time in VLC or smaller than the exact time}. This behavior is desired because I can estimate easily what the time is using my own clock and sync with VLC time at key frames where the exact time is returned.
In v2.0 and 2.1.1, it seems like T is {plus or minus N from the exact time}, where N is between 0 and as much as 200 ms. Unfortunately, I don't have a way to estimate the time when T is behaving like this.
Can anyone shed some light on this issue? Is it possible to fix VLC to return the time as in v.1.1?