chiark / gitweb /
align with disorder.unicode a bit
[disorder] / server / speaker.h
index ae4eac3d08a315ca821d1ffa5f34dbc643d4a879..de89ee0476384c612baadc51ee8bd8b84823b7a1 100644 (file)
@@ -56,7 +56,7 @@
 #define NETWORK_BYTES (1500-8/*UDP*/-40/*IP*/-8/*conservatism*/)
 
 /** @brief Maximum RTP playahead (ms) */
-#define RTP_AHEAD_MS 1000
+#define RTP_AHEAD_MS 100
 
 /** @brief Maximum number of FDs to poll for */
 #define NFDS 256
@@ -167,12 +167,18 @@ struct speaker_backend {
   void (*deactivate)(void);
 
   /** @brief Called before poll()
+   * @param timeoutp Pointer to timeout
    *
-   * Called before the call to poll().  Should call addfd() to update
-   * the FD array and stash the slot number somewhere safe.  This will
-   * only be called if @ref device_state = @ref device_open.
+   * Called before the call to poll().
+   *
+   * If desirable, should call addfd() to update the FD array and stash the
+   * slot number somewhere safe.  This will only be called if @ref device_state
+   * is @ref device_open.
+   *
+   * @p timeoutp points to the poll timeout value in milliseconds.  It may be
+   * reduced, but never increased.
    */
-  void (*beforepoll)(void);
+  void (*beforepoll)(int *timeoutp);
 
   /** @brief Called after poll()
    * @return 1 if output device ready for play, 0 otherwise