chiark / gitweb /
configure.ac, debian/: Set up correct dependencies for GStreamer.
[disorder] / plugins / tracklength-flac.c
index a838966bc0e28885477594af1c570ac8bf7c7b98..684221d2f55ff2a7ec9cf3267bf271b61907d9bc 100644 (file)
@@ -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
 
 /* 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;
 };