diff options
| -rw-r--r-- | HISTORY | 1 | ||||
| -rw-r--r-- | omxdevice.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -12,6 +12,7 @@ VDR Plugin 'rpihddevice' Revision History - reworked setup parameter handling - implemented proper command queue for OVG-OSD - fixed: + - increased latency target for live mode to 500ms - upmix mono audio channels to stereo when using PCM output on HDMI - skip non-video packets in StillPicture(), fixes artifacts in PES recordings - skip audio substream header for PES recordings with AC3 audio track diff --git a/omxdevice.c b/omxdevice.c index a1664da..27d4036 100644 --- a/omxdevice.c +++ b/omxdevice.c @@ -17,8 +17,8 @@ #include <string.h> -// latency target for transfer mode in PTS ticks (90kHz) -> 200ms -#define LATENCY_TARGET 18000LL +// latency target for transfer mode in PTS ticks (90kHz) -> 500ms +#define LATENCY_TARGET 45000LL // latency window for validation where closed loop will be active (+/- 4s) #define LATENCY_WINDOW 360000LL |
