chiark / gitweb /
doxygen: add some missing docstrings.
[disorder] / plugins / tracklength-flac.c
index a838966bc0e28885477594af1c570ac8bf7c7b98..31a7e9d0774465564c5396e33fcd71b23614fe71 100644 (file)
 
 /* libFLAC's "simplified" interface is rather heavyweight... */
 
+/** @brief State used when computing FLAC file length */
 struct flac_state {
+  /** @brief Duration or -1 */
   long duration;
+
+  /** @brief File being analyzed */
   const char *path;
 };