]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - afh_common.c
aac_afh: Don't create chunk tables any more.
[paraslash.git] / afh_common.c
index a1021ee57a2fd67f0192a8049cfa512ecd5629d3..78e3779cb9e875c7bbbbe3dfa4313164610c6354 100644 (file)
@@ -109,7 +109,18 @@ void afh_init(void)
        }
 }
 
-static bool afh_supports_dynamic_chunks(int audio_format_id)
+/**
+ * Tell whether an audio format handler provides chunk tables.
+ *
+ * Each audio format handler either provides a chunk table or supports dynamic
+ * chunks.
+ *
+ * \param audio_format_id Offset in the afl array.
+ *
+ * \return True if dynamic chunks are supported, false if the audio format
+ * handler provides chunk tables.
+ */
+bool afh_supports_dynamic_chunks(int audio_format_id)
 {
        return afl[audio_format_id].get_chunk;
 }