]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - afh.h
Rename instances of struct afh_info from "afi" to "afhi".
[paraslash.git] / afh.h
diff --git a/afh.h b/afh.h
index 9ad078582e156be166b7c06dc35100549a26f337..1e37c9c39c26a328c6663e8108f9ff2d071ff4a2 100644 (file)
--- a/afh.h
+++ b/afh.h
 /** size of the  audio_file info string */
 #define AUDIO_FILE_INFO_SIZE 256
 
-/**
- * Audio format dependent information. Details vary between each audio format
- * handler.
- */
-struct audio_format_info {
+/** Audio format dependent information. */
+struct afh_info {
        /** The number of chunks this audio file contains. */
        long unsigned chunks_total;
        /** The length of the audio file in seconds. */
@@ -93,16 +90,16 @@ struct audio_format_handler {
         * valid for this audio format. A negative return value indicates that
         * this audio format handler is unable to decode the given file. On
         * success, the function must return a positive value and fill in the
-        * given struct audio_format_info.
+        * given struct afh_info.
         *
-        * \sa struct audio_format_info
+        * \sa struct afh_info
         */
        int (*get_file_info)(char *map, size_t numbytes,
-               struct audio_format_info *afi);
+               struct afh_info *afi);
 };
 
 void afh_init(void);
 int guess_audio_format(const char *name);
 int compute_afhi(const char *path, char *data, size_t size,
-       struct audio_format_info *afhi);
+       struct afh_info *afhi);
 const char *audio_format_name(int);