I'm developing a mediaplayer and trying to seek anywhere on video.
but i have a problem.
example code:
Set time (Video was paused before this command)
Code: Select all
libvlc_media_player_set_time(myHandle,110000) '''''' SEEK TO 110th second
Code: Select all
libvlc_media_player_get_time(myHandle) '''' RETURNS 109810 . So -190 Miliseconds difference
I never getting true get_time
Why happening those set and get differences.
At same videos VLC player working good.
Inadvance thanks for relations.