X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afs.c;h=8e0a50aa90fd5547c80bf168236f76221f36e7bf;hp=29bae161682bc00f6fd133e3c29ca7e5df06994d;hb=db34194eaab9819772bd55ea1ab08c719ed8f1c8;hpb=12c2be31603eaf83d19797c625bef54ad56e4433 diff --git a/afs.c b/afs.c index 29bae161..8e0a50aa 100644 --- a/afs.c +++ b/afs.c @@ -58,7 +58,7 @@ static FILE *audio_file = NULL; /** * the list of supported audio formats */ -struct audio_format afl[] = { +struct audio_format_handler afl[] = { #if 1 { .name = "mp3", @@ -336,7 +336,7 @@ static struct timeval *afs_compute_timeout(void) return &the_timeout; } -static void afs_eof(struct audio_format *af) +static void afs_eof(struct audio_format_handler *af) { struct timeval now; int i; @@ -388,7 +388,7 @@ static void afs_eof(struct audio_format *af) */ struct timeval *afs_preselect(void) { - struct audio_format *af = NULL; + struct audio_format_handler *af = NULL; int i, format; struct timeval *ret; again: @@ -449,7 +449,7 @@ again: void afs_send_chunk(void) { int i; - struct audio_format *af; + struct audio_format_handler *af; char *buf; ssize_t ret; struct timeval now, due;