This sounds like a very old bug is returning. But I might be wrong here. Haven't followed this thread for a long timeUsing v0076_part_DWM, does navigation work OK if you use the mouse or keyboard arrow keys (instead of a remote control) ?
Tony
P.S. Everyone - is anyone else seeing this problem ?
The solution back then I introduced to MP for this and similar issues was:
- drop a frame when it's presentation time delta to current time is > 0 (frame is late)
- don't drop frames during DVD menus
- don't drop fames during ff or rew
Was any of this logic changed since the dshelper from MP 1.1.0?
This is essential logic for a correct behavior and cannot be changed. A late frame is late, there is no grace period! If it's not ready on the correct vsync it's too late. Not dropping frames will result in 1 frame audio/video desync everytime.
DVD menus might only be a single frame and can come with strange timestamps. Especially when there is an audio loop running. The old frame is repeated over and over again with the same old timestamp from the DVD Navigator. So frame drops need to be disabled as we cannot distinguish what kind of menu is running.
And of course no dropping during ff/rew as timestamps will be off anyway. Just display everything you get.
PS: Trying to read up on the forums before I return to producing code...