stream: pa_stream_get_underflow_index: constify
authorLyndon Brown <jnqnfe@gmail.com>
Sun, 27 May 2018 05:00:02 +0000 (06:00 +0100)
committerArun Raghavan <arun@arunraghavan.net>
Thu, 21 Jun 2018 01:00:25 +0000 (06:30 +0530)
src/pulse/stream.c
src/pulse/stream.h

index 4786d751600deb4a1afea8f1c61a1d2cb3e854bb..d57c27ad9c191e69468f23f4f0995daec6a31388 100644 (file)
@@ -850,7 +850,7 @@ finish:
     pa_context_unref(c);
 }
 
-int64_t pa_stream_get_underflow_index(pa_stream *p) {
+int64_t pa_stream_get_underflow_index(const pa_stream *p) {
     pa_assert(p);
     return p->latest_underrun_at_index;
 }
index 4a2efadafe950431394da50c03c4937949178d00..1c22835452f10257664793e1af09045dae083b7f 100644 (file)
@@ -602,7 +602,7 @@ void pa_stream_set_overflow_callback(pa_stream *p, pa_stream_notify_cb_t cb, voi
  * known (e.g.\ if no underflow has occurred, or server is older than 1.0).
  * Can be used inside the underflow callback to get information about the current underflow.
  * (Only for playback streams) \since 1.0 */
-int64_t pa_stream_get_underflow_index(pa_stream *p);
+int64_t pa_stream_get_underflow_index(const pa_stream *p);
 
 /** Set the callback function that is called when a buffer underflow happens. (Only for playback streams) */
 void pa_stream_set_underflow_callback(pa_stream *p, pa_stream_notify_cb_t cb, void *userdata);