X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=afh_common.c;fp=afh_common.c;h=78e3779cb9e875c7bbbbe3dfa4313164610c6354;hb=6a0cd05bad7cb1fb166c54aaa8f04927e40baa68;hp=a1021ee57a2fd67f0192a8049cfa512ecd5629d3;hpb=b6b571e6c6fb52207b11fc7833b272ec8cfa28bf;p=paraslash.git diff --git a/afh_common.c b/afh_common.c index a1021ee5..78e3779c 100644 --- a/afh_common.c +++ b/afh_common.c @@ -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; }