X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/cdabf44d4bf72678b402c0fd7dac394eb36513da..05fd0aa117566503026dbedfe4d9b0485da2d5ed:/plugins/tracklength-flac.c diff --git a/plugins/tracklength-flac.c b/plugins/tracklength-flac.c index a838966..684221d 100644 --- a/plugins/tracklength-flac.c +++ b/plugins/tracklength-flac.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 2011 Richard Kettlewell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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; };