mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
don't make m-e-s hit an assert when the latency is queried
This commit is contained in:
parent
0f664b7365
commit
514661e36c
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offse
|
||||||
w = pa_bytes_to_usec((uint64_t) u->offset + u->memchunk.length, &u->sink->sample_spec);
|
w = pa_bytes_to_usec((uint64_t) u->offset + u->memchunk.length, &u->sink->sample_spec);
|
||||||
|
|
||||||
*((pa_usec_t*) data) = w > r ? w - r : 0;
|
*((pa_usec_t*) data) = w > r ? w - r : 0;
|
||||||
break;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
case SINK_MESSAGE_PASS_SOCKET: {
|
case SINK_MESSAGE_PASS_SOCKET: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue