Commit 90efd884 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

PulseAudio: adjust overall latency, not (only) the buffer size

Without this flag, PulseAudio will tweak the buffer parameters, but
will not account for hardware latencies. As a consequence, the live
caching parameter is not really followed - the latency is longer.

Longer latency becomes a big problem when trying to synch with another
live source (such as a V4L2 video capture device). Then audio is too
late and gets discarded or messed up at output.
(cherry picked from commit d8a96604534966dab34ae2251d370a10f319ecd0)
parent 7f6b1042
...@@ -287,6 +287,7 @@ static int Open(vlc_object_t *obj) ...@@ -287,6 +287,7 @@ static int Open(vlc_object_t *obj)
const pa_stream_flags_t flags = PA_STREAM_INTERPOLATE_TIMING const pa_stream_flags_t flags = PA_STREAM_INTERPOLATE_TIMING
| PA_STREAM_AUTO_TIMING_UPDATE | PA_STREAM_AUTO_TIMING_UPDATE
| PA_STREAM_ADJUST_LATENCY
| PA_STREAM_FIX_FORMAT | PA_STREAM_FIX_FORMAT
| PA_STREAM_FIX_RATE | PA_STREAM_FIX_RATE
/*| PA_STREAM_FIX_CHANNELS*/; /*| PA_STREAM_FIX_CHANNELS*/;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment