X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oggdec.c;h=3554eb1b8ff3c6135d47e21c88e5abfd480b0dc5;hp=d6c8f1121f0cf11f3289e4ba64cbf713f99950aa;hb=f6c929d9e580bb1f2666236b16de1e3fe73878d3;hpb=d1bfba58e0a93444c7381e9029eda5e786b2fa02 diff --git a/oggdec.c b/oggdec.c index d6c8f112..3554eb1b 100644 --- a/oggdec.c +++ b/oggdec.c @@ -61,7 +61,7 @@ static size_t cb_read(void *buf, size_t size, size_t nmemb, void *datasource) errno = EAGAIN; return -1; } - ret = MIN(nmemb, have / size) * size; + ret = PARA_MIN(nmemb, have / size) * size; memcpy(buf, p, ret); pod->converted += ret; return ret; @@ -72,13 +72,13 @@ static size_t cb_read(void *buf, size_t size, size_t nmemb, void *datasource) * Since we want the data source to be treated as unseekable at all * times, the provided seek callback always returns -1 (failure). */ -static int cb_seek(__unused void *datasource, __unused ogg_int64_t offset, - __unused int whence) +static int cb_seek(__a_unused void *datasource, __a_unused ogg_int64_t offset, + __a_unused int whence) { return -1; } -static int cb_close(__unused void *datasource) +static int cb_close(__a_unused void *datasource) { return 0; } @@ -98,7 +98,7 @@ static void ogg_open(struct filter_node *fn) { struct private_oggdec_data *pod = para_calloc( sizeof(struct private_oggdec_data)); - struct gengetopt_args_info *conf = fn->conf; + struct oggdec_filter_args_info *conf = fn->conf; fn->private_data = pod; fn->bufsize = conf->bufsize_arg * 1024; @@ -125,7 +125,7 @@ static ssize_t ogg_convert(char *inbuffer, size_t len, struct filter_node *fn) { ssize_t ret; struct private_oggdec_data *pod = fn->private_data; - struct gengetopt_args_info *conf = fn->conf; + struct oggdec_filter_args_info *conf = fn->conf; /* make the buffer known to the read callback cb_read() */ pod->inbuf = inbuffer; pod->inbuf_len = len; @@ -174,7 +174,7 @@ again: static void *oggdec_parse_config(int argc, char **argv) { - struct gengetopt_args_info *ret = para_calloc(sizeof(struct gengetopt_args_info)); + struct oggdec_filter_args_info *ret = para_calloc(sizeof(struct oggdec_filter_args_info)); if (!oggdec_cmdline_parser(argc, argv, ret)) return ret; free(ret);