chiark / gitweb /
doxygen: add some missing docstrings.
authorRichard Kettlewell <rjk@terraraq.org.uk>
Sun, 7 Aug 2011 16:00:09 +0000 (17:00 +0100)
committerRichard Kettlewell <rjk@terraraq.org.uk>
Sun, 7 Aug 2011 16:00:09 +0000 (17:00 +0100)
clients/resample.c
lib/strptime.c
lib/strptime.h
lib/validity.h
plugins/tracklength.h
server/decode-flac.c
server/decode-ogg.c
server/decode-wav.c

index bc41013b6fb343b55d7b0b759b475aab0271a661..6291c8336decc2798fd23e8b6a2b3c2cabcc28f7 100644 (file)
@@ -15,6 +15,9 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+/** @file clients/resample.c
+ * @brief Audio resampler
+ */
 #include "common.h"
 
 #include <unistd.h>
index 91d57d55451ae2212bd785004cc581226e35c250..27ef40aeffebae51b88188245631b0cb0418067e 100644 (file)
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  */
-
-/* strptime() is here reimplemented because the FreeBSD (and older MacOS) one
+/** @file lib/strptime.c
+ * @brief strptime() reimplementation
+ *
+ * strptime() is here reimplemented because the FreeBSD (and older MacOS) one
  * is broken and does not report errors properly.  See TODO remarks below for
- * some missing bits. */
+ * some missing bits.
+ */
 
 #include <ctype.h>
 #include <limits.h>
index 324f88d1bd8d133986b6bcb43ae4646998ca4aab..b2b3715d244fca205998874a11d54266f530930c 100644 (file)
@@ -1,5 +1,8 @@
 #ifndef STRPTIME_H
 #define STRPTIME_H
+/** @file lib/strptime.h
+ * @brief strptime() reimplementation
+ */
 
 #include <time.h>
 
index 8ce2505842f5dff6716cca1d7aef420293676399..6254708e14f328e17b64242c7e3b268bc7d0bbf4 100644 (file)
@@ -17,7 +17,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  * USA
  */
-/** @file lib/validity.c
+/** @file lib/validity.h
  * @brief Various validity checks
  */
 #ifndef VALIDITY_H
index c8e22a44cf404c5bb1a4df2f4f371c5b442dadb0..112b652ebd7a364ac78d1554ebb98e014c2767ff 100644 (file)
@@ -15,6 +15,9 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+/** @file plugins/tracklength.h
+ * @brief Plugin to compute track lengths
+ */
 
 #ifndef TRACKLENGTH_H
 #define TRACKLENGTH_H
index f1399fba925813dca31f165d6bc8829f1ec47b49..9577d9db0fc40bf2e2268dc23fb6e0578b1c393f 100644 (file)
@@ -15,7 +15,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-/** @file server/decode.c
+/** @file server/decode-flac.c
  * @brief General-purpose decoder for use by speaker process
  */
 #include "decode.h"
index d499955225cf444cb732fe8f062c7f9379af8472..efa10a7d35c526b12dd758f197fb8a8807c518c5 100644 (file)
@@ -15,7 +15,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-/** @file server/decode.c
+/** @file server/decode-ogg.c
  * @brief General-purpose decoder for use by speaker process
  */
 #include "decode.h"
index fd58a140349b6d007f7dd638bd2eb55c7b8c7858..8fdc10e66e104ff4b600f12e4464d3d724080c28 100644 (file)
@@ -15,7 +15,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-/** @file server/decode.c
+/** @file server/decode-wav.c
  * @brief General-purpose decoder for use by speaker process
  */
 #include "decode.h"