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) {
212 for (round = 0; round < 2; round++) {
215 if (!fmt || !
KNOWN(fmt))
254 for (p = fmts; *p != -1; p++) {
261 #define COPY_INT_LIST(list_copy, list, type) { \
264 for (count = 0; list[count] != -1; count++) \
266 list_copy = av_calloc(count+1, sizeof(type)); \
268 memcpy(list_copy, list, sizeof(type) * count); \
269 list_copy[count] = -1; \
287 #define MAKE_FORMAT_LIST(type, field, count_field) \
291 for (count = 0; fmts[count] != -1; count++) \
293 formats = av_mallocz(sizeof(*formats)); \
294 if (!formats) return NULL; \
295 formats->count_field = count; \
297 formats->field = av_malloc(sizeof(*formats->field)*count); \
298 if (!formats->field) { \
308 formats->formats[count] = fmts[count];
316 channel_layouts, nb_channel_layouts);
318 memcpy(
formats->channel_layouts, fmts,
319 sizeof(*
formats->channel_layouts) * count);
324 #define ADD_FORMAT(f, fmt, type, list, nb) \
328 if (!(*f) && !(*f = av_mallocz(sizeof(**f)))) \
329 return AVERROR(ENOMEM); \
331 fmts = av_realloc((*f)->list, \
332 sizeof(*(*f)->list) * ((*f)->nb + 1));\
334 return AVERROR(ENOMEM); \
337 (*f)->list[(*f)->nb++] = fmt; \
349 ADD_FORMAT(l, channel_layout, uint64_t, channel_layouts, nb_channel_layouts);
360 for (fmt = 0; fmt < num_formats; fmt++) {
416 #define FORMATS_REF(f, ref) \
419 f->refs = av_realloc(f->refs, sizeof(*f->refs) * ++f->refcount); \
420 f->refs[f->refcount-1] = ref; \
433 #define FIND_REF_INDEX(ref, idx) \
436 for (i = 0; i < (*ref)->refcount; i ++) \
437 if((*ref)->refs[i] == ref) { \
443 #define FORMATS_UNREF(ref, list) \
450 FIND_REF_INDEX(ref, idx); \
453 memmove((*ref)->refs + idx, (*ref)->refs + idx + 1, \
454 sizeof(*(*ref)->refs) * ((*ref)->refcount - idx - 1)); \
456 if(!--(*ref)->refcount) { \
457 av_free((*ref)->list); \
458 av_free((*ref)->refs); \
474 #define FORMATS_CHANGEREF(oldref, newref) \
478 FIND_REF_INDEX(oldref, idx); \
481 (*oldref)->refs[idx] = newref; \
498 #define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref, list) \
502 for (i = 0; i < ctx->nb_inputs; i++) { \
503 if (ctx->inputs[i] && !ctx->inputs[i]->out_fmts) { \
504 ref(fmts, &ctx->inputs[i]->out_fmts); \
508 for (i = 0; i < ctx->nb_outputs; i++) { \
509 if (ctx->outputs[i] && !ctx->outputs[i]->in_fmts) { \
510 ref(fmts, &ctx->outputs[i]->in_fmts); \
516 av_freep(&fmts->list); \
517 av_freep(&fmts->refs); \
580 pix_fmt = strtol(arg, &tail, 0);
595 sfmt = strtol(arg, &tail, 0);
620 if (*tail || srate < 1 || (
int)srate != srate || srate > INT_MAX) {
633 chlayout = strtol(arg, &tail, 10);
634 if (*tail || chlayout == 0) {