X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh.h;h=dad67351a9ec6548dd464d691d9013afee0a0d6c;hp=62e38c02af85a946c74533115b8f826be337781a;hb=5e8d8a8eea6de9459ebdf4498f9f061c84bfa63a;hpb=0f4910b50116416fefb09ca67a615679067ef359 diff --git a/afh.h b/afh.h index 62e38c02..dad67351 100644 --- a/afh.h +++ b/afh.h @@ -28,9 +28,9 @@ struct taginfo { /** Audio format dependent information. */ struct afh_info { /** The number of chunks this audio file contains. */ - long unsigned chunks_total; + uint32_t chunks_total; /** The length of the audio file in seconds. */ - long unsigned seconds_total; + uint32_t seconds_total; /** Audio handler specific info about the file. */ char *techinfo; /** Id3 tags, vorbis comments, aac tags. */ @@ -88,7 +88,7 @@ struct audio_format_handler { */ void (*init)(struct audio_format_handler*); /** Typical file endings for files that can be handled by this afh. */ - const char **suffixes; + const char * const *suffixes; /** * Check if this audio format handler can handle the file. *