]> git.sesse.net Git - ffmpeg/blob - libavfilter/formats.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / formats.c
1 /*
2  * Filter layer - format negotiation
3  * Copyright (c) 2007 Bobby Bingham
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/eval.h"
23 #include "libavutil/pixdesc.h"
24 #include "libavutil/parseutils.h"
25 #include "libavutil/audioconvert.h"
26 #include "avfilter.h"
27 #include "internal.h"
28 #include "formats.h"
29
30 /**
31  * Add all refs from a to ret and destroy a.
32  */
33 #define MERGE_REF(ret, a, fmts, type, fail)                                \
34 do {                                                                       \
35     type ***tmp;                                                           \
36     int i;                                                                 \
37                                                                            \
38     if (!(tmp = av_realloc(ret->refs,                                      \
39                            sizeof(*tmp) * (ret->refcount + a->refcount)))) \
40         goto fail;                                                         \
41     ret->refs = tmp;                                                       \
42                                                                            \
43     for (i = 0; i < a->refcount; i ++) {                                   \
44         ret->refs[ret->refcount] = a->refs[i];                             \
45         *ret->refs[ret->refcount++] = ret;                                 \
46     }                                                                      \
47                                                                            \
48     av_freep(&a->refs);                                                    \
49     av_freep(&a->fmts);                                                    \
50     av_freep(&a);                                                          \
51 } while (0)
52
53 /**
54  * Add all formats common for a and b to ret, copy the refs and destroy
55  * a and b.
56  */
57 #define MERGE_FORMATS(ret, a, b, fmts, nb, type, fail)                          \
58 do {                                                                            \
59     int i, j, k = 0, count = FFMIN(a->nb, b->nb);                               \
60                                                                                 \
61     if (!(ret = av_mallocz(sizeof(*ret))))                                      \
62         goto fail;                                                              \
63                                                                                 \
64     if (count) {                                                                \
65         if (!(ret->fmts = av_malloc(sizeof(*ret->fmts) * count)))               \
66             goto fail;                                                          \
67         for (i = 0; i < a->nb; i++)                                             \
68             for (j = 0; j < b->nb; j++)                                         \
69                 if (a->fmts[i] == b->fmts[j]) {                                 \
70                     if(k >= FFMIN(a->nb, b->nb)){                               \
71                         av_log(0, AV_LOG_ERROR, "Duplicate formats in avfilter_merge_formats() detected\n"); \
72                         av_free(ret->fmts);                                     \
73                         av_free(ret);                                           \
74                         return NULL;                                            \
75                     }                                                           \
76                     ret->fmts[k++] = a->fmts[i];                                \
77                 }                                                               \
78     }                                                                           \
79     ret->nb = k;                                                                \
80     /* check that there was at least one common format */                       \
81     if (!ret->nb)                                                               \
82         goto fail;                                                              \
83                                                                                 \
84     MERGE_REF(ret, a, fmts, type, fail);                                        \
85     MERGE_REF(ret, b, fmts, type, fail);                                        \
86 } while (0)
87
88 AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b)
89 {
90     AVFilterFormats *ret = NULL;
91
92     if (a == b)
93         return a;
94
95     MERGE_FORMATS(ret, a, b, formats, format_count, AVFilterFormats, fail);
96
97     return ret;
98 fail:
99     if (ret) {
100         av_freep(&ret->refs);
101         av_freep(&ret->formats);
102     }
103     av_freep(&ret);
104     return NULL;
105 }
106
107 AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
108                                       AVFilterFormats *b)
109 {
110     AVFilterFormats *ret = NULL;
111
112     if (a == b) return a;
113
114     if (a->format_count && b->format_count) {
115         MERGE_FORMATS(ret, a, b, formats, format_count, AVFilterFormats, fail);
116     } else if (a->format_count) {
117         MERGE_REF(a, b, formats, AVFilterFormats, fail);
118         ret = a;
119     } else {
120         MERGE_REF(b, a, formats, AVFilterFormats, fail);
121         ret = b;
122     }
123
124     return ret;
125 fail:
126     if (ret) {
127         av_freep(&ret->refs);
128         av_freep(&ret->formats);
129     }
130     av_freep(&ret);
131     return NULL;
132 }
133
134 AVFilterChannelLayouts *ff_merge_channel_layouts(AVFilterChannelLayouts *a,
135                                                  AVFilterChannelLayouts *b)
136 {
137     AVFilterChannelLayouts *ret = NULL;
138
139     if (a == b) return a;
140
141     if (a->nb_channel_layouts && b->nb_channel_layouts) {
142         MERGE_FORMATS(ret, a, b, channel_layouts, nb_channel_layouts,
143                       AVFilterChannelLayouts, fail);
144     } else if (a->nb_channel_layouts) {
145         MERGE_REF(a, b, channel_layouts, AVFilterChannelLayouts, fail);
146         ret = a;
147     } else {
148         MERGE_REF(b, a, channel_layouts, AVFilterChannelLayouts, fail);
149         ret = b;
150     }
151
152     return ret;
153 fail:
154     if (ret) {
155         av_freep(&ret->refs);
156         av_freep(&ret->channel_layouts);
157     }
158     av_freep(&ret);
159     return NULL;
160 }
161
162 int ff_fmt_is_in(int fmt, const int *fmts)
163 {
164     const int *p;
165
166     for (p = fmts; *p != -1; p++) {
167         if (fmt == *p)
168             return 1;
169     }
170     return 0;
171 }
172
173 #define COPY_INT_LIST(list_copy, list, type) {                          \
174     int count = 0;                                                      \
175     if (list)                                                           \
176         for (count = 0; list[count] != -1; count++)                     \
177             ;                                                           \
178     list_copy = av_calloc(count+1, sizeof(type));                       \
179     if (list_copy) {                                                    \
180         memcpy(list_copy, list, sizeof(type) * count);                  \
181         list_copy[count] = -1;                                          \
182     }                                                                   \
183 }
184
185 int *ff_copy_int_list(const int * const list)
186 {
187     int *ret = NULL;
188     COPY_INT_LIST(ret, list, int);
189     return ret;
190 }
191
192 int64_t *ff_copy_int64_list(const int64_t * const list)
193 {
194     int64_t *ret = NULL;
195     COPY_INT_LIST(ret, list, int64_t);
196     return ret;
197 }
198
199 #define MAKE_FORMAT_LIST(type, field, count_field)                      \
200     type *formats;                                                      \
201     int count = 0;                                                      \
202     if (fmts)                                                           \
203         for (count = 0; fmts[count] != -1; count++)                     \
204             ;                                                           \
205     formats = av_mallocz(sizeof(*formats));                             \
206     if (!formats) return NULL;                                          \
207     formats->count_field = count;                                       \
208     if (count) {                                                        \
209         formats->field = av_malloc(sizeof(*formats->field)*count);      \
210         if (!formats->field) {                                          \
211             av_free(formats);                                           \
212             return NULL;                                                \
213         }                                                               \
214     }
215
216 AVFilterFormats *avfilter_make_format_list(const int *fmts)
217 {
218     MAKE_FORMAT_LIST(AVFilterFormats, formats, format_count);
219     while (count--)
220         formats->formats[count] = fmts[count];
221
222     return formats;
223 }
224
225 AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts)
226 {
227     MAKE_FORMAT_LIST(AVFilterChannelLayouts,
228                      channel_layouts, nb_channel_layouts);
229     if (count)
230         memcpy(formats->channel_layouts, fmts,
231                sizeof(*formats->channel_layouts) * count);
232
233     return formats;
234 }
235
236 #define ADD_FORMAT(f, fmt, type, list, nb)                  \
237 do {                                                        \
238     type *fmts;                                             \
239                                                             \
240     if (!(*f) && !(*f = av_mallocz(sizeof(**f))))           \
241         return AVERROR(ENOMEM);                             \
242                                                             \
243     fmts = av_realloc((*f)->list,                           \
244                       sizeof(*(*f)->list) * ((*f)->nb + 1));\
245     if (!fmts)                                              \
246         return AVERROR(ENOMEM);                             \
247                                                             \
248     (*f)->list = fmts;                                      \
249     (*f)->list[(*f)->nb++] = fmt;                           \
250     return 0;                                               \
251 } while (0)
252
253 int avfilter_add_format(AVFilterFormats **avff, int64_t fmt)
254 {
255     ADD_FORMAT(avff, fmt, int, formats, format_count);
256 }
257
258 int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout)
259 {
260     ADD_FORMAT(l, channel_layout, uint64_t, channel_layouts, nb_channel_layouts);
261 }
262
263 #if FF_API_OLD_ALL_FORMATS_API
264 AVFilterFormats *avfilter_all_formats(enum AVMediaType type)
265 {
266     return avfilter_make_all_formats(type);
267 }
268 #endif
269
270 AVFilterFormats *avfilter_make_all_formats(enum AVMediaType type)
271 {
272     AVFilterFormats *ret = NULL;
273     int fmt;
274     int num_formats = type == AVMEDIA_TYPE_VIDEO ? PIX_FMT_NB    :
275                       type == AVMEDIA_TYPE_AUDIO ? AV_SAMPLE_FMT_NB : 0;
276
277     for (fmt = 0; fmt < num_formats; fmt++)
278         if ((type != AVMEDIA_TYPE_VIDEO) ||
279             (type == AVMEDIA_TYPE_VIDEO && !(av_pix_fmt_descriptors[fmt].flags & PIX_FMT_HWACCEL)))
280             avfilter_add_format(&ret, fmt);
281
282     return ret;
283 }
284
285 const int64_t avfilter_all_channel_layouts[] = {
286 #include "all_channel_layouts.inc"
287     -1
288 };
289
290 // AVFilterFormats *avfilter_make_all_channel_layouts(void)
291 // {
292 //     return avfilter_make_format64_list(avfilter_all_channel_layouts);
293 // }
294
295 #if FF_API_PACKING
296 AVFilterFormats *avfilter_make_all_packing_formats(void)
297 {
298     static const int packing[] = {
299         AVFILTER_PACKED,
300         AVFILTER_PLANAR,
301         -1,
302     };
303
304     return avfilter_make_format_list(packing);
305 }
306 #endif
307
308 AVFilterFormats *ff_all_samplerates(void)
309 {
310     AVFilterFormats *ret = av_mallocz(sizeof(*ret));
311     return ret;
312 }
313
314 AVFilterChannelLayouts *ff_all_channel_layouts(void)
315 {
316     AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
317     return ret;
318 }
319
320 #define FORMATS_REF(f, ref)                                          \
321 do {                                                                 \
322     *ref = f;                                                        \
323     f->refs = av_realloc(f->refs, sizeof(*f->refs) * ++f->refcount); \
324     f->refs[f->refcount-1] = ref;                                    \
325 } while (0)
326
327 void ff_channel_layouts_ref(AVFilterChannelLayouts *f, AVFilterChannelLayouts **ref)
328 {
329     FORMATS_REF(f, ref);
330 }
331
332 void avfilter_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
333 {
334     FORMATS_REF(f, ref);
335 }
336
337 #define FIND_REF_INDEX(ref, idx)            \
338 do {                                        \
339     int i;                                  \
340     for (i = 0; i < (*ref)->refcount; i ++) \
341         if((*ref)->refs[i] == ref) {        \
342             idx = i;                        \
343             break;                          \
344         }                                   \
345 } while (0)
346
347 #define FORMATS_UNREF(ref, list)                                   \
348 do {                                                               \
349     int idx = -1;                                                  \
350                                                                    \
351     if (!*ref)                                                     \
352         return;                                                    \
353                                                                    \
354     FIND_REF_INDEX(ref, idx);                                      \
355                                                                    \
356     if (idx >= 0)                                                  \
357         memmove((*ref)->refs + idx, (*ref)->refs + idx + 1,        \
358             sizeof(*(*ref)->refs) * ((*ref)->refcount - idx - 1)); \
359                                                                    \
360     if(!--(*ref)->refcount) {                                      \
361         av_free((*ref)->list);                                     \
362         av_free((*ref)->refs);                                     \
363         av_free(*ref);                                             \
364     }                                                              \
365     *ref = NULL;                                                   \
366 } while (0)
367
368 void avfilter_formats_unref(AVFilterFormats **ref)
369 {
370     FORMATS_UNREF(ref, formats);
371 }
372
373 void ff_channel_layouts_unref(AVFilterChannelLayouts **ref)
374 {
375     FORMATS_UNREF(ref, channel_layouts);
376 }
377
378 #define FORMATS_CHANGEREF(oldref, newref)       \
379 do {                                            \
380     int idx = -1;                               \
381                                                 \
382     FIND_REF_INDEX(oldref, idx);                \
383                                                 \
384     if (idx >= 0) {                             \
385         (*oldref)->refs[idx] = newref;          \
386         *newref = *oldref;                      \
387         *oldref = NULL;                         \
388     }                                           \
389 } while (0)
390
391 void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref,
392                                   AVFilterChannelLayouts **newref)
393 {
394     FORMATS_CHANGEREF(oldref, newref);
395 }
396
397 void avfilter_formats_changeref(AVFilterFormats **oldref,
398                                 AVFilterFormats **newref)
399 {
400     FORMATS_CHANGEREF(oldref, newref);
401 }
402
403 #define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref, list) \
404 {                                                                   \
405     int count = 0, i;                                               \
406                                                                     \
407     for (i = 0; i < ctx->input_count; i++) {                        \
408         if (ctx->inputs[i]) {                                       \
409             ref(fmts, &ctx->inputs[i]->out_fmts);                   \
410             count++;                                                \
411         }                                                           \
412     }                                                               \
413     for (i = 0; i < ctx->output_count; i++) {                       \
414         if (ctx->outputs[i]) {                                      \
415             ref(fmts, &ctx->outputs[i]->in_fmts);                   \
416             count++;                                                \
417         }                                                           \
418     }                                                               \
419                                                                     \
420     if (!count) {                                                   \
421         av_freep(&fmts->list);                                      \
422         av_freep(&fmts->refs);                                      \
423         av_freep(&fmts);                                            \
424     }                                                               \
425 }
426
427 void ff_set_common_channel_layouts(AVFilterContext *ctx,
428                                    AVFilterChannelLayouts *layouts)
429 {
430     SET_COMMON_FORMATS(ctx, layouts, in_channel_layouts, out_channel_layouts,
431                        ff_channel_layouts_ref, channel_layouts);
432 }
433
434 void ff_set_common_samplerates(AVFilterContext *ctx,
435                                AVFilterFormats *samplerates)
436 {
437     SET_COMMON_FORMATS(ctx, samplerates, in_samplerates, out_samplerates,
438                        avfilter_formats_ref, formats);
439 }
440
441 /**
442  * A helper for query_formats() which sets all links to the same list of
443  * formats. If there are no links hooked to this filter, the list of formats is
444  * freed.
445  */
446 void avfilter_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
447 {
448     SET_COMMON_FORMATS(ctx, formats, in_formats, out_formats,
449                        avfilter_formats_ref, formats);
450 }
451
452 int avfilter_default_query_formats(AVFilterContext *ctx)
453 {
454     enum AVMediaType type = ctx->inputs  && ctx->inputs [0] ? ctx->inputs [0]->type :
455                             ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
456                             AVMEDIA_TYPE_VIDEO;
457
458     avfilter_set_common_formats(ctx, avfilter_all_formats(type));
459     if (type == AVMEDIA_TYPE_AUDIO) {
460         ff_set_common_channel_layouts(ctx, ff_all_channel_layouts());
461         ff_set_common_samplerates(ctx, ff_all_samplerates());
462     }
463
464     return 0;
465 }
466
467 /* internal functions for parsing audio format arguments */
468
469 int ff_parse_pixel_format(enum PixelFormat *ret, const char *arg, void *log_ctx)
470 {
471     char *tail;
472     int pix_fmt = av_get_pix_fmt(arg);
473     if (pix_fmt == PIX_FMT_NONE) {
474         pix_fmt = strtol(arg, &tail, 0);
475         if (*tail || (unsigned)pix_fmt >= PIX_FMT_NB) {
476             av_log(log_ctx, AV_LOG_ERROR, "Invalid pixel format '%s'\n", arg);
477             return AVERROR(EINVAL);
478         }
479     }
480     *ret = pix_fmt;
481     return 0;
482 }
483
484 int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx)
485 {
486     char *tail;
487     int sfmt = av_get_sample_fmt(arg);
488     if (sfmt == AV_SAMPLE_FMT_NONE) {
489         sfmt = strtol(arg, &tail, 0);
490         if (*tail || (unsigned)sfmt >= AV_SAMPLE_FMT_NB) {
491             av_log(log_ctx, AV_LOG_ERROR, "Invalid sample format '%s'\n", arg);
492             return AVERROR(EINVAL);
493         }
494     }
495     *ret = sfmt;
496     return 0;
497 }
498
499 int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx)
500 {
501     AVRational r;
502     if(av_parse_ratio(&r, arg, INT_MAX, 0, log_ctx) < 0 ||r.num<=0  ||r.den<=0) {
503         av_log(log_ctx, AV_LOG_ERROR, "Invalid time base '%s'\n", arg);
504         return AVERROR(EINVAL);
505     }
506     *ret = r;
507     return 0;
508 }
509
510 int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx)
511 {
512     char *tail;
513     double srate = av_strtod(arg, &tail);
514     if (*tail || srate < 1 || (int)srate != srate || srate > INT_MAX) {
515         av_log(log_ctx, AV_LOG_ERROR, "Invalid sample rate '%s'\n", arg);
516         return AVERROR(EINVAL);
517     }
518     *ret = srate;
519     return 0;
520 }
521
522 int ff_parse_channel_layout(int64_t *ret, const char *arg, void *log_ctx)
523 {
524     char *tail;
525     int64_t chlayout = av_get_channel_layout(arg);
526     if (chlayout == 0) {
527         chlayout = strtol(arg, &tail, 10);
528         if (*tail || chlayout == 0) {
529             av_log(log_ctx, AV_LOG_ERROR, "Invalid channel layout '%s'\n", arg);
530             return AVERROR(EINVAL);
531         }
532     }
533     *ret = chlayout;
534     return 0;
535 }
536
537 #ifdef TEST
538
539 #undef printf
540
541 int main(void)
542 {
543     const int64_t *cl;
544     char buf[512];
545
546     for (cl = avfilter_all_channel_layouts; *cl != -1; cl++) {
547         av_get_channel_layout_string(buf, sizeof(buf), -1, *cl);
548         printf("%s\n", buf);
549     }
550
551     return 0;
552 }
553
554 #endif
555