mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
af_aformat: use evil ADD_FORMATS macro for cutting out duplicated code
This commit is contained in:
parent
5fa98ab42d
commit
8aa62bb950
@ -42,60 +42,30 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
|
|||||||
if (!args)
|
if (!args)
|
||||||
goto arg_fail;
|
goto arg_fail;
|
||||||
|
|
||||||
fmts_str = av_get_token(&args, ":");
|
#define ADD_FORMATS(all_formats, fmt_name, fmt_type, fmts_list) \
|
||||||
if (!fmts_str || !*fmts_str)
|
fmts_str = av_get_token(&args, ":"); \
|
||||||
goto arg_fail;
|
if (!fmts_str || !*fmts_str) \
|
||||||
if (!strcmp(fmts_str, "all")) {
|
goto arg_fail; \
|
||||||
aformat->formats = avfilter_all_formats(AVMEDIA_TYPE_AUDIO);
|
if (!strcmp(fmts_str, "all")) { \
|
||||||
} else {
|
aformat->fmts_list = all_formats; \
|
||||||
for (fmt_str = fmts_str;
|
} else { \
|
||||||
fmt_str = strtok_r(fmt_str, ",", &ptr); fmt_str = NULL) {
|
for (fmt_str = fmts_str; \
|
||||||
if ((ret = ff_parse_sample_format((int*)&fmt, fmt_str, ctx)) < 0) {
|
fmt_str = strtok_r(fmt_str, ",", &ptr); fmt_str = NULL) { \
|
||||||
av_freep(&fmts_str);
|
if ((ret = ff_parse_##fmt_name((fmt_type *)&fmt, \
|
||||||
return ret;
|
fmt_str, ctx)) < 0) { \
|
||||||
}
|
av_freep(&fmts_str); \
|
||||||
avfilter_add_format(&aformat->formats, fmt);
|
return ret; \
|
||||||
}
|
} \
|
||||||
}
|
avfilter_add_format(&aformat->fmts_list, fmt); \
|
||||||
av_freep(&fmts_str);
|
} \
|
||||||
|
} \
|
||||||
if (*args)
|
av_freep(&fmts_str); \
|
||||||
|
if (*args) \
|
||||||
args++;
|
args++;
|
||||||
fmts_str = av_get_token(&args, ":");
|
|
||||||
if (!fmts_str || !*fmts_str)
|
|
||||||
goto arg_fail;
|
|
||||||
if (!strcmp(fmts_str, "all")) {
|
|
||||||
aformat->chlayouts = avfilter_all_channel_layouts();
|
|
||||||
} else {
|
|
||||||
for (fmt_str = fmts_str;
|
|
||||||
fmt_str = strtok_r(fmt_str, ",", &ptr); fmt_str = NULL) {
|
|
||||||
if ((ret = ff_parse_channel_layout(&fmt, fmt_str, ctx)) < 0) {
|
|
||||||
av_freep(&fmts_str);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
avfilter_add_format(&aformat->chlayouts, fmt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
av_freep(&fmts_str);
|
|
||||||
|
|
||||||
if (*args)
|
ADD_FORMATS(avfilter_all_formats(AVMEDIA_TYPE_AUDIO), sample_format, int, formats);
|
||||||
args++;
|
ADD_FORMATS(avfilter_all_channel_layouts(), channel_layout, int64_t, chlayouts);
|
||||||
fmts_str = av_get_token(&args, ":");
|
ADD_FORMATS(avfilter_all_packing_formats(), packing_format, int, packing);
|
||||||
if (!fmts_str || !*fmts_str)
|
|
||||||
goto arg_fail;
|
|
||||||
if (!strcmp(fmts_str, "all")) {
|
|
||||||
aformat->packing = avfilter_all_packing_formats();
|
|
||||||
} else {
|
|
||||||
for (fmt_str = fmts_str;
|
|
||||||
fmt_str = strtok_r(fmt_str, ",", &ptr); fmt_str = NULL) {
|
|
||||||
if ((ret = ff_parse_packing_format((int*)&fmt, fmt_str, ctx)) < 0) {
|
|
||||||
av_freep(&fmts_str);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
avfilter_add_format(&aformat->packing, fmt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
av_freep(&fmts_str);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user