mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
volume: Rename 'sync volume' to 'deferred volume'.
This just covers Lennart's concern over the terminology used. The majority of this change is simply the following command: grep -rli sync[-_]volume . | xargs sed -i 's/sync_volume/deferred_volume/g;s/PA_SINK_SYNC_VOLUME/PA_SINK_DEFERRED_VOLUME/g;s/PA_SOURCE_SYNC_VOLUME/PA_SOURCE_DEFERRED_VOLUME/g;s/sync-volume/deferred-volume/g' Some minor tweaks were added on top to tidy up formatting and a couple of phrases were clarified too.
This commit is contained in:
parent
83577aa373
commit
aa3142ab20
20 changed files with 143 additions and 141 deletions
|
|
@ -133,9 +133,9 @@ struct pa_source {
|
|||
* set this callback. */
|
||||
pa_source_cb_t set_volume; /* may be NULL */
|
||||
|
||||
/* Source drivers that set PA_SOURCE_SYNC_VOLUME must provide this
|
||||
/* Source drivers that set PA_SOURCE_DEFERRED_VOLUME must provide this
|
||||
* callback. This callback is not used with source that do not set
|
||||
* PA_SOURCE_SYNC_VOLUME. This is called from the IO thread when a
|
||||
* PA_SOURCE_DEFERRED_VOLUME. This is called from the IO thread when a
|
||||
* pending hardware volume change has to be written to the
|
||||
* hardware. The requested volume is passed to the callback
|
||||
* implementation in s->thread_info.current_hw_volume.
|
||||
|
|
@ -207,7 +207,7 @@ struct pa_source {
|
|||
PA_LLIST_HEAD(pa_source_volume_change, volume_changes);
|
||||
pa_source_volume_change *volume_changes_tail;
|
||||
/* This value is updated in pa_source_volume_change_apply() and
|
||||
* used only by sources with PA_SOURCE_SYNC_VOLUME. */
|
||||
* used only by sources with PA_SOURCE_DEFERRED_VOLUME. */
|
||||
pa_cvolume current_hw_volume;
|
||||
|
||||
/* The amount of usec volume up events are delayed and volume
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue