&& !(mmd->new_vss_status_flags & VSS_PLAYING);
}
+/**
+ * Check if the vss is currently stopped.
+ *
+ * \return Greater than zero if paused, zero otherwise.
+ *
+ */
+unsigned int vss_stopped(void)
+{
+ return (mmd->new_vss_status_flags & VSS_NEXT)
+ && !(mmd->new_vss_status_flags & VSS_PLAYING);
+}
+
/**
* Initialize the virtual streaming system.
*
unsigned int vss_next(void);
unsigned int vss_repos(void);
unsigned int vss_paused(void);
+unsigned int vss_stopped(void);
char *vss_get_header(size_t *header_len);
struct timeval *vss_chunk_time(void);
const char *supported_audio_formats(void);