doxygen: add some missing docstrings.
[disorder] / plugins / tracklength-flac.c
index a838966..31a7e9d 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;
 };