32 #define KNOWN(l) (!FF_LAYOUT2COUNT(l))
37 #define MERGE_REF(ret, a, fmts, type, fail) \
42 if (!(tmp = av_realloc(ret->refs, \
43 sizeof(*tmp) * (ret->refcount + a->refcount)))) \
47 for (i = 0; i < a->refcount; i ++) { \
48 ret->refs[ret->refcount] = a->refs[i]; \
49 *ret->refs[ret->refcount++] = ret; \
61 #define MERGE_FORMATS(ret, a, b, fmts, nb, type, fail) \
63 int i, j, k = 0, count = FFMIN(a->nb, b->nb); \
65 if (!(ret = av_mallocz(sizeof(*ret)))) \
69 if (!(ret->fmts = av_malloc(sizeof(*ret->fmts) * count))) \
71 for (i = 0; i < a->nb; i++) \
72 for (j = 0; j < b->nb; j++) \
73 if (a->fmts[i] == b->fmts[j]) { \
74 if(k >= FFMIN(a->nb, b->nb)){ \
75 av_log(NULL, AV_LOG_ERROR, "Duplicate formats in avfilter_merge_formats() detected\n"); \
80 ret->fmts[k++] = a->fmts[i]; \
88 MERGE_REF(ret, a, fmts, type, fail); \
89 MERGE_REF(ret, b, fmts, type, fail); \
97 int alpha1=0, alpha2=0;
98 int chroma1=0, chroma2=0;
124 if (alpha2 > alpha1 || chroma2 > chroma1)
144 if (a == b)
return a;
172 int ret_max, ret_nb = 0, i, j,
round;
174 if (a == b)
return a;
179 FFSWAP(
unsigned, a_all, b_all);
182 if (a_all == 1 && !b_all) {
216 for (round = 0; round < 2; round++) {
219 if (!fmt || !
KNOWN(fmt))
258 for (p = fmts; *p != -1; p++) {
265 #define COPY_INT_LIST(list_copy, list, type) { \
268 for (count = 0; list[count] != -1; count++) \
270 list_copy = av_calloc(count+1, sizeof(type)); \
272 memcpy(list_copy, list, sizeof(type) * count); \
273 list_copy[count] = -1; \
291 #define MAKE_FORMAT_LIST(type, field, count_field) \
295 for (count = 0; fmts[count] != -1; count++) \
297 formats = av_mallocz(sizeof(*formats)); \
298 if (!formats) return NULL; \
299 formats->count_field = count; \
301 formats->field = av_malloc(sizeof(*formats->field)*count); \
302 if (!formats->field) { \
320 channel_layouts, nb_channel_layouts);
322 memcpy(
formats->channel_layouts, fmts,
328 #define ADD_FORMAT(f, fmt, type, list, nb) \
332 if (!(*f) && !(*f = av_mallocz(sizeof(**f)))) \
333 return AVERROR(ENOMEM); \
335 fmts = av_realloc((*f)->list, \
336 sizeof(*(*f)->list) * ((*f)->nb + 1));\
338 return AVERROR(ENOMEM); \
341 (*f)->list[(*f)->nb++] = fmt; \
353 ADD_FORMAT(l, channel_layout, uint64_t, channel_layouts, nb_channel_layouts);
364 for (fmt = 0; fmt < num_formats; fmt++) {
420 #define FORMATS_REF(f, ref) \
423 f->refs = av_realloc(f->refs, sizeof(*f->refs) * ++f->refcount); \
424 f->refs[f->refcount-1] = ref; \
437 #define FIND_REF_INDEX(ref, idx) \
440 for (i = 0; i < (*ref)->refcount; i ++) \
441 if((*ref)->refs[i] == ref) { \
447 #define FORMATS_UNREF(ref, list) \
454 FIND_REF_INDEX(ref, idx); \
457 memmove((*ref)->refs + idx, (*ref)->refs + idx + 1, \
458 sizeof(*(*ref)->refs) * ((*ref)->refcount - idx - 1)); \
460 if(!--(*ref)->refcount) { \
461 av_free((*ref)->list); \
462 av_free((*ref)->refs); \
478 #define FORMATS_CHANGEREF(oldref, newref) \
482 FIND_REF_INDEX(oldref, idx); \
485 (*oldref)->refs[idx] = newref; \
502 #define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref, list) \
506 for (i = 0; i < ctx->nb_inputs; i++) { \
507 if (ctx->inputs[i] && !ctx->inputs[i]->out_fmts) { \
508 ref(fmts, &ctx->inputs[i]->out_fmts); \
512 for (i = 0; i < ctx->nb_outputs; i++) { \
513 if (ctx->outputs[i] && !ctx->outputs[i]->in_fmts) { \
514 ref(fmts, &ctx->outputs[i]->in_fmts); \
520 av_freep(&fmts->list); \
521 av_freep(&fmts->refs); \
584 pix_fmt = strtol(arg, &tail, 0);
599 sfmt = strtol(arg, &tail, 0);
624 if (*tail || srate < 1 || (
int)srate != srate || srate > INT_MAX) {
637 chlayout = strtol(arg, &tail, 10);
638 if (*tail || chlayout == 0) {