mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
context: pa_context_get_tile_size: constify
This commit is contained in:
parent
351731c697
commit
4e3a080d76
2 changed files with 2 additions and 2 deletions
|
|
@ -1621,7 +1621,7 @@ void pa_context_rttime_restart(const pa_context *c, pa_time_event *e, pa_usec_t
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t pa_context_get_tile_size(pa_context *c, const pa_sample_spec *ss) {
|
size_t pa_context_get_tile_size(const pa_context *c, const pa_sample_spec *ss) {
|
||||||
size_t fs, mbs;
|
size_t fs, mbs;
|
||||||
|
|
||||||
pa_assert(c);
|
pa_assert(c);
|
||||||
|
|
|
||||||
|
|
@ -280,7 +280,7 @@ void pa_context_rttime_restart(const pa_context *c, pa_time_event *e, pa_usec_t
|
||||||
* supposed to be used in a construct such as
|
* supposed to be used in a construct such as
|
||||||
* pa_context_get_tile_size(pa_stream_get_context(s),
|
* pa_context_get_tile_size(pa_stream_get_context(s),
|
||||||
* pa_stream_get_sample_spec(ss)); \since 0.9.20 */
|
* pa_stream_get_sample_spec(ss)); \since 0.9.20 */
|
||||||
size_t pa_context_get_tile_size(pa_context *c, const pa_sample_spec *ss);
|
size_t pa_context_get_tile_size(const pa_context *c, const pa_sample_spec *ss);
|
||||||
|
|
||||||
/** Load the authentication cookie from a file. This function is primarily
|
/** Load the authentication cookie from a file. This function is primarily
|
||||||
* meant for PulseAudio's own tunnel modules, which need to load the cookie
|
* meant for PulseAudio's own tunnel modules, which need to load the cookie
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue