X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/feda7bfaefd9e5fb705d6893f26428a3109e7226..a4007f6001dc24c8a2375e4dabcc77e8abbd6f8a:/plugins/tracklength-flac.c?ds=sidebyside diff --git a/plugins/tracklength-flac.c b/plugins/tracklength-flac.c index a838966..31a7e9d 100644 --- a/plugins/tracklength-flac.c +++ b/plugins/tracklength-flac.c @@ -23,8 +23,12 @@ /* 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; };