simplify setup_default_wng()
[paraslash.git] / ogg_afh.c
index cce1eb54f40c02d05e96419c1afd0e849c18c6a4..d295f2d31ba1a482f7c67a0d0663a1efc5c82867 100644 (file)
--- a/ogg_afh.c
+++ b/ogg_afh.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2006 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2004-2007 Andre Noll <maan@systemlinux.org>
  *
  *     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
  */
 /** \file ogg_afh.c para_server's ogg vorbis audio format handler */
 
+#include <inttypes.h>
 #include <ogg/ogg.h>
 #include <vorbis/codec.h>
 #include <vorbis/vorbisfile.h>
 
 #include "server.cmdline.h"
 #include "server.h"
-#include "afs.h"
+#include "vss.h"
 #include "afh.h"
 #include "error.h"
 #include "string.h"
 
-/* must be big enough to hold header */
+/** must be big enough to hold header */
 #define CHUNK_SIZE 32768
 static double chunk_time = 0.25;
 
@@ -116,7 +117,7 @@ err2:
 err1:
        ogg_sync_destroy(sync_in);
        vorbis_info_clear(&vi);
-        vorbis_comment_clear(&vc);
+       vorbis_comment_clear(&vc);
        return ret;
 }
 
@@ -141,7 +142,7 @@ static void tunetable(void)
        lp = i;
        for (i = 2; i < num_chunks - lp; i++)
                chunk_table[i] = chunk_table[i + lp];
-#endif 
+#endif
 }
 
 
@@ -306,7 +307,7 @@ static ogg_int64_t get_chunk_size(long unsigned chunk_num)
        return ret;
 }
 
-char *ogg_read_chunk(long unsigned current_chunk, ssize_t *len)
+static char *ogg_read_chunk(long unsigned current_chunk, ssize_t *len)
 {
        int ret;
        ogg_int64_t cs = get_chunk_size(current_chunk);
@@ -347,6 +348,12 @@ static char *ogg_get_header_info(int *len)
 }
 
 static const char* ogg_suffixes[] = {"ogg", NULL};
+
+/**
+ * the init function of the ogg vorbis audio format handler
+ *
+ * \param p pointer to the struct to initialize
+ */
 void ogg_init(struct audio_format_handler *p)
 {
        af = p;