mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
stream: rename requested to size in pw_time
Now that both the expected input and output of the resampler is placed in the rate_match, rename the 'requested' field in pw_time to 'size' and update the docs. See #3750
This commit is contained in:
parent
627f148665
commit
a769a014e0
3 changed files with 12 additions and 11 deletions
|
|
@ -932,11 +932,11 @@ static void do_print_delay(void *userdata, uint64_t expirations)
|
|||
pw_stream_get_time_n(data->stream, &time, sizeof(time));
|
||||
printf("stream time: now:%"PRIi64" rate:%u/%u ticks:%"PRIu64
|
||||
" delay:%"PRIi64" queued:%"PRIu64
|
||||
" buffered:%"PRIi64" buffers:%u avail:%u req:%"PRIu64"\n",
|
||||
" buffered:%"PRIi64" buffers:%u avail:%u size:%"PRIu64"\n",
|
||||
time.now,
|
||||
time.rate.num, time.rate.denom,
|
||||
time.ticks, time.delay, time.queued, time.buffered,
|
||||
time.queued_buffers, time.avail_buffers, time.requested);
|
||||
time.queued_buffers, time.avail_buffers, time.size);
|
||||
}
|
||||
|
||||
enum {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue