]> git.sesse.net Git - ffmpeg/blob - cmdutils.c
error_resilience: add required headers.
[ffmpeg] / cmdutils.c
1 /*
2  * Various utilities for command line tools
3  * Copyright (c) 2000-2003 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <string.h>
23 #include <stdlib.h>
24 #include <errno.h>
25 #include <math.h>
26
27 /* Include only the enabled headers since some compilers (namely, Sun
28    Studio) will not omit unused inline functions and create undefined
29    references to libraries that are not being built. */
30
31 #include "config.h"
32 #include "libavformat/avformat.h"
33 #include "libavfilter/avfilter.h"
34 #include "libavdevice/avdevice.h"
35 #include "libavresample/avresample.h"
36 #include "libswscale/swscale.h"
37 #include "libavutil/avassert.h"
38 #include "libavutil/avstring.h"
39 #include "libavutil/mathematics.h"
40 #include "libavutil/imgutils.h"
41 #include "libavutil/parseutils.h"
42 #include "libavutil/pixdesc.h"
43 #include "libavutil/eval.h"
44 #include "libavutil/dict.h"
45 #include "libavutil/opt.h"
46 #include "cmdutils.h"
47 #include "version.h"
48 #if CONFIG_NETWORK
49 #include "libavformat/network.h"
50 #endif
51 #if HAVE_SYS_RESOURCE_H
52 #include <sys/time.h>
53 #include <sys/resource.h>
54 #endif
55
56 struct SwsContext *sws_opts;
57 AVDictionary *format_opts, *codec_opts;
58
59 static const int this_year = 2013;
60
61 void init_opts(void)
62 {
63 #if CONFIG_SWSCALE
64     sws_opts = sws_getContext(16, 16, 0, 16, 16, 0, SWS_BICUBIC,
65                               NULL, NULL, NULL);
66 #endif
67 }
68
69 void uninit_opts(void)
70 {
71 #if CONFIG_SWSCALE
72     sws_freeContext(sws_opts);
73     sws_opts = NULL;
74 #endif
75     av_dict_free(&format_opts);
76     av_dict_free(&codec_opts);
77 }
78
79 void log_callback_help(void *ptr, int level, const char *fmt, va_list vl)
80 {
81     vfprintf(stdout, fmt, vl);
82 }
83
84 double parse_number_or_die(const char *context, const char *numstr, int type,
85                            double min, double max)
86 {
87     char *tail;
88     const char *error;
89     double d = av_strtod(numstr, &tail);
90     if (*tail)
91         error = "Expected number for %s but found: %s\n";
92     else if (d < min || d > max)
93         error = "The value for %s was %s which is not within %f - %f\n";
94     else if (type == OPT_INT64 && (int64_t)d != d)
95         error = "Expected int64 for %s but found %s\n";
96     else if (type == OPT_INT && (int)d != d)
97         error = "Expected int for %s but found %s\n";
98     else
99         return d;
100     av_log(NULL, AV_LOG_FATAL, error, context, numstr, min, max);
101     exit(1);
102     return 0;
103 }
104
105 int64_t parse_time_or_die(const char *context, const char *timestr,
106                           int is_duration)
107 {
108     int64_t us;
109     if (av_parse_time(&us, timestr, is_duration) < 0) {
110         av_log(NULL, AV_LOG_FATAL, "Invalid %s specification for %s: %s\n",
111                is_duration ? "duration" : "date", context, timestr);
112         exit(1);
113     }
114     return us;
115 }
116
117 void show_help_options(const OptionDef *options, const char *msg, int req_flags,
118                        int rej_flags, int alt_flags)
119 {
120     const OptionDef *po;
121     int first;
122
123     first = 1;
124     for (po = options; po->name != NULL; po++) {
125         char buf[64];
126
127         if (((po->flags & req_flags) != req_flags) ||
128             (alt_flags && !(po->flags & alt_flags)) ||
129             (po->flags & rej_flags))
130             continue;
131
132         if (first) {
133             printf("%s\n", msg);
134             first = 0;
135         }
136         av_strlcpy(buf, po->name, sizeof(buf));
137         if (po->argname) {
138             av_strlcat(buf, " ", sizeof(buf));
139             av_strlcat(buf, po->argname, sizeof(buf));
140         }
141         printf("-%-17s  %s\n", buf, po->help);
142     }
143     printf("\n");
144 }
145
146 void show_help_children(const AVClass *class, int flags)
147 {
148     const AVClass *child = NULL;
149     av_opt_show2(&class, NULL, flags, 0);
150     printf("\n");
151
152     while (child = av_opt_child_class_next(class, child))
153         show_help_children(child, flags);
154 }
155
156 static const OptionDef *find_option(const OptionDef *po, const char *name)
157 {
158     const char *p = strchr(name, ':');
159     int len = p ? p - name : strlen(name);
160
161     while (po->name != NULL) {
162         if (!strncmp(name, po->name, len) && strlen(po->name) == len)
163             break;
164         po++;
165     }
166     return po;
167 }
168
169 #if HAVE_COMMANDLINETOARGVW
170 #include <windows.h>
171 #include <shellapi.h>
172 /* Will be leaked on exit */
173 static char** win32_argv_utf8 = NULL;
174 static int win32_argc = 0;
175
176 /**
177  * Prepare command line arguments for executable.
178  * For Windows - perform wide-char to UTF-8 conversion.
179  * Input arguments should be main() function arguments.
180  * @param argc_ptr Arguments number (including executable)
181  * @param argv_ptr Arguments list.
182  */
183 static void prepare_app_arguments(int *argc_ptr, char ***argv_ptr)
184 {
185     char *argstr_flat;
186     wchar_t **argv_w;
187     int i, buffsize = 0, offset = 0;
188
189     if (win32_argv_utf8) {
190         *argc_ptr = win32_argc;
191         *argv_ptr = win32_argv_utf8;
192         return;
193     }
194
195     win32_argc = 0;
196     argv_w = CommandLineToArgvW(GetCommandLineW(), &win32_argc);
197     if (win32_argc <= 0 || !argv_w)
198         return;
199
200     /* determine the UTF-8 buffer size (including NULL-termination symbols) */
201     for (i = 0; i < win32_argc; i++)
202         buffsize += WideCharToMultiByte(CP_UTF8, 0, argv_w[i], -1,
203                                         NULL, 0, NULL, NULL);
204
205     win32_argv_utf8 = av_mallocz(sizeof(char *) * (win32_argc + 1) + buffsize);
206     argstr_flat     = (char *)win32_argv_utf8 + sizeof(char *) * (win32_argc + 1);
207     if (win32_argv_utf8 == NULL) {
208         LocalFree(argv_w);
209         return;
210     }
211
212     for (i = 0; i < win32_argc; i++) {
213         win32_argv_utf8[i] = &argstr_flat[offset];
214         offset += WideCharToMultiByte(CP_UTF8, 0, argv_w[i], -1,
215                                       &argstr_flat[offset],
216                                       buffsize - offset, NULL, NULL);
217     }
218     win32_argv_utf8[i] = NULL;
219     LocalFree(argv_w);
220
221     *argc_ptr = win32_argc;
222     *argv_ptr = win32_argv_utf8;
223 }
224 #else
225 static inline void prepare_app_arguments(int *argc_ptr, char ***argv_ptr)
226 {
227     /* nothing to do */
228 }
229 #endif /* HAVE_COMMANDLINETOARGVW */
230
231 static int write_option(void *optctx, const OptionDef *po, const char *opt,
232                         const char *arg)
233 {
234     /* new-style options contain an offset into optctx, old-style address of
235      * a global var*/
236     void *dst = po->flags & (OPT_OFFSET | OPT_SPEC) ?
237                 (uint8_t *)optctx + po->u.off : po->u.dst_ptr;
238     int *dstcount;
239
240     if (po->flags & OPT_SPEC) {
241         SpecifierOpt **so = dst;
242         char *p = strchr(opt, ':');
243
244         dstcount = (int *)(so + 1);
245         *so = grow_array(*so, sizeof(**so), dstcount, *dstcount + 1);
246         (*so)[*dstcount - 1].specifier = av_strdup(p ? p + 1 : "");
247         dst = &(*so)[*dstcount - 1].u;
248     }
249
250     if (po->flags & OPT_STRING) {
251         char *str;
252         str = av_strdup(arg);
253         av_freep(dst);
254         *(char **)dst = str;
255     } else if (po->flags & OPT_BOOL || po->flags & OPT_INT) {
256         *(int *)dst = parse_number_or_die(opt, arg, OPT_INT64, INT_MIN, INT_MAX);
257     } else if (po->flags & OPT_INT64) {
258         *(int64_t *)dst = parse_number_or_die(opt, arg, OPT_INT64, INT64_MIN, INT64_MAX);
259     } else if (po->flags & OPT_TIME) {
260         *(int64_t *)dst = parse_time_or_die(opt, arg, 1);
261     } else if (po->flags & OPT_FLOAT) {
262         *(float *)dst = parse_number_or_die(opt, arg, OPT_FLOAT, -INFINITY, INFINITY);
263     } else if (po->flags & OPT_DOUBLE) {
264         *(double *)dst = parse_number_or_die(opt, arg, OPT_DOUBLE, -INFINITY, INFINITY);
265     } else if (po->u.func_arg) {
266         int ret = po->u.func_arg(optctx, opt, arg);
267         if (ret < 0) {
268             av_log(NULL, AV_LOG_ERROR,
269                    "Failed to set value '%s' for option '%s'\n", arg, opt);
270             return ret;
271         }
272     }
273     if (po->flags & OPT_EXIT)
274         exit(0);
275
276     return 0;
277 }
278
279 int parse_option(void *optctx, const char *opt, const char *arg,
280                  const OptionDef *options)
281 {
282     const OptionDef *po;
283     int ret;
284
285     po = find_option(options, opt);
286     if (!po->name && opt[0] == 'n' && opt[1] == 'o') {
287         /* handle 'no' bool option */
288         po = find_option(options, opt + 2);
289         if ((po->name && (po->flags & OPT_BOOL)))
290             arg = "0";
291     } else if (po->flags & OPT_BOOL)
292         arg = "1";
293
294     if (!po->name)
295         po = find_option(options, "default");
296     if (!po->name) {
297         av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt);
298         return AVERROR(EINVAL);
299     }
300     if (po->flags & HAS_ARG && !arg) {
301         av_log(NULL, AV_LOG_ERROR, "Missing argument for option '%s'\n", opt);
302         return AVERROR(EINVAL);
303     }
304
305     ret = write_option(optctx, po, opt, arg);
306     if (ret < 0)
307         return ret;
308
309     return !!(po->flags & HAS_ARG);
310 }
311
312 void parse_options(void *optctx, int argc, char **argv, const OptionDef *options,
313                    void (*parse_arg_function)(void *, const char*))
314 {
315     const char *opt;
316     int optindex, handleoptions = 1, ret;
317
318     /* perform system-dependent conversions for arguments list */
319     prepare_app_arguments(&argc, &argv);
320
321     /* parse options */
322     optindex = 1;
323     while (optindex < argc) {
324         opt = argv[optindex++];
325
326         if (handleoptions && opt[0] == '-' && opt[1] != '\0') {
327             if (opt[1] == '-' && opt[2] == '\0') {
328                 handleoptions = 0;
329                 continue;
330             }
331             opt++;
332
333             if ((ret = parse_option(optctx, opt, argv[optindex], options)) < 0)
334                 exit(1);
335             optindex += ret;
336         } else {
337             if (parse_arg_function)
338                 parse_arg_function(optctx, opt);
339         }
340     }
341 }
342
343 int parse_optgroup(void *optctx, OptionGroup *g)
344 {
345     int i, ret;
346
347     av_log(NULL, AV_LOG_DEBUG, "Parsing a group of options: %s %s.\n",
348            g->group_def->name, g->arg);
349
350     for (i = 0; i < g->nb_opts; i++) {
351         Option *o = &g->opts[i];
352
353         av_log(NULL, AV_LOG_DEBUG, "Applying option %s (%s) with argument %s.\n",
354                o->key, o->opt->help, o->val);
355
356         ret = write_option(optctx, o->opt, o->key, o->val);
357         if (ret < 0)
358             return ret;
359     }
360
361     av_log(NULL, AV_LOG_DEBUG, "Successfully parsed a group of options.\n");
362
363     return 0;
364 }
365
366 int locate_option(int argc, char **argv, const OptionDef *options,
367                   const char *optname)
368 {
369     const OptionDef *po;
370     int i;
371
372     for (i = 1; i < argc; i++) {
373         const char *cur_opt = argv[i];
374
375         if (*cur_opt++ != '-')
376             continue;
377
378         po = find_option(options, cur_opt);
379         if (!po->name && cur_opt[0] == 'n' && cur_opt[1] == 'o')
380             po = find_option(options, cur_opt + 2);
381
382         if ((!po->name && !strcmp(cur_opt, optname)) ||
383              (po->name && !strcmp(optname, po->name)))
384             return i;
385
386         if (!po || po->flags & HAS_ARG)
387             i++;
388     }
389     return 0;
390 }
391
392 void parse_loglevel(int argc, char **argv, const OptionDef *options)
393 {
394     int idx = locate_option(argc, argv, options, "loglevel");
395     if (!idx)
396         idx = locate_option(argc, argv, options, "v");
397     if (idx && argv[idx + 1])
398         opt_loglevel(NULL, "loglevel", argv[idx + 1]);
399 }
400
401 #define FLAGS (o->type == AV_OPT_TYPE_FLAGS) ? AV_DICT_APPEND : 0
402 int opt_default(void *optctx, const char *opt, const char *arg)
403 {
404     const AVOption *o;
405     char opt_stripped[128];
406     const char *p;
407     const AVClass *cc = avcodec_get_class(), *fc = avformat_get_class();
408 #if CONFIG_SWSCALE
409     const AVClass *sc = sws_get_class();
410 #endif
411
412     if (!(p = strchr(opt, ':')))
413         p = opt + strlen(opt);
414     av_strlcpy(opt_stripped, opt, FFMIN(sizeof(opt_stripped), p - opt + 1));
415
416     if ((o = av_opt_find(&cc, opt_stripped, NULL, 0,
417                          AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) ||
418         ((opt[0] == 'v' || opt[0] == 'a' || opt[0] == 's') &&
419          (o = av_opt_find(&cc, opt + 1, NULL, 0, AV_OPT_SEARCH_FAKE_OBJ))))
420         av_dict_set(&codec_opts, opt, arg, FLAGS);
421     else if ((o = av_opt_find(&fc, opt, NULL, 0,
422                               AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)))
423         av_dict_set(&format_opts, opt, arg, FLAGS);
424 #if CONFIG_SWSCALE
425     else if ((o = av_opt_find(&sc, opt, NULL, 0,
426                               AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) {
427         // XXX we only support sws_flags, not arbitrary sws options
428         int ret = av_opt_set(sws_opts, opt, arg, 0);
429         if (ret < 0) {
430             av_log(NULL, AV_LOG_ERROR, "Error setting option %s.\n", opt);
431             return ret;
432         }
433     }
434 #endif
435
436     if (o)
437         return 0;
438     return AVERROR_OPTION_NOT_FOUND;
439 }
440
441 /*
442  * Check whether given option is a group separator.
443  *
444  * @return index of the group definition that matched or -1 if none
445  */
446 static int match_group_separator(const OptionGroupDef *groups, int nb_groups,
447                                  const char *opt)
448 {
449     int i;
450
451     for (i = 0; i < nb_groups; i++) {
452         const OptionGroupDef *p = &groups[i];
453         if (p->sep && !strcmp(p->sep, opt))
454             return i;
455     }
456
457     return -1;
458 }
459
460 /*
461  * Finish parsing an option group.
462  *
463  * @param group_idx which group definition should this group belong to
464  * @param arg argument of the group delimiting option
465  */
466 static void finish_group(OptionParseContext *octx, int group_idx,
467                          const char *arg)
468 {
469     OptionGroupList *l = &octx->groups[group_idx];
470     OptionGroup *g;
471
472     GROW_ARRAY(l->groups, l->nb_groups);
473     g = &l->groups[l->nb_groups - 1];
474
475     *g             = octx->cur_group;
476     g->arg         = arg;
477     g->group_def   = l->group_def;
478 #if CONFIG_SWSCALE
479     g->sws_opts    = sws_opts;
480 #endif
481     g->codec_opts  = codec_opts;
482     g->format_opts = format_opts;
483
484     codec_opts  = NULL;
485     format_opts = NULL;
486 #if CONFIG_SWSCALE
487     sws_opts    = NULL;
488 #endif
489     init_opts();
490
491     memset(&octx->cur_group, 0, sizeof(octx->cur_group));
492 }
493
494 /*
495  * Add an option instance to currently parsed group.
496  */
497 static void add_opt(OptionParseContext *octx, const OptionDef *opt,
498                     const char *key, const char *val)
499 {
500     int global = !(opt->flags & (OPT_PERFILE | OPT_SPEC | OPT_OFFSET));
501     OptionGroup *g = global ? &octx->global_opts : &octx->cur_group;
502
503     GROW_ARRAY(g->opts, g->nb_opts);
504     g->opts[g->nb_opts - 1].opt = opt;
505     g->opts[g->nb_opts - 1].key = key;
506     g->opts[g->nb_opts - 1].val = val;
507 }
508
509 static void init_parse_context(OptionParseContext *octx,
510                                const OptionGroupDef *groups, int nb_groups)
511 {
512     static const OptionGroupDef global_group = { "global" };
513     int i;
514
515     memset(octx, 0, sizeof(*octx));
516
517     octx->nb_groups = nb_groups;
518     octx->groups    = av_mallocz(sizeof(*octx->groups) * octx->nb_groups);
519     if (!octx->groups)
520         exit(1);
521
522     for (i = 0; i < octx->nb_groups; i++)
523         octx->groups[i].group_def = &groups[i];
524
525     octx->global_opts.group_def = &global_group;
526     octx->global_opts.arg       = "";
527
528     init_opts();
529 }
530
531 void uninit_parse_context(OptionParseContext *octx)
532 {
533     int i, j;
534
535     for (i = 0; i < octx->nb_groups; i++) {
536         OptionGroupList *l = &octx->groups[i];
537
538         for (j = 0; j < l->nb_groups; j++) {
539             av_freep(&l->groups[j].opts);
540             av_dict_free(&l->groups[j].codec_opts);
541             av_dict_free(&l->groups[j].format_opts);
542 #if CONFIG_SWSCALE
543             sws_freeContext(l->groups[j].sws_opts);
544 #endif
545         }
546         av_freep(&l->groups);
547     }
548     av_freep(&octx->groups);
549
550     av_freep(&octx->cur_group.opts);
551     av_freep(&octx->global_opts.opts);
552
553     uninit_opts();
554 }
555
556 int split_commandline(OptionParseContext *octx, int argc, char *argv[],
557                       const OptionDef *options,
558                       const OptionGroupDef *groups, int nb_groups)
559 {
560     int optindex = 1;
561
562     /* perform system-dependent conversions for arguments list */
563     prepare_app_arguments(&argc, &argv);
564
565     init_parse_context(octx, groups, nb_groups);
566     av_log(NULL, AV_LOG_DEBUG, "Splitting the commandline.\n");
567
568     while (optindex < argc) {
569         const char *opt = argv[optindex++], *arg;
570         const OptionDef *po;
571         int ret;
572
573         av_log(NULL, AV_LOG_DEBUG, "Reading option '%s' ...", opt);
574
575         /* unnamed group separators, e.g. output filename */
576         if (opt[0] != '-' || !opt[1]) {
577             finish_group(octx, 0, opt);
578             av_log(NULL, AV_LOG_DEBUG, " matched as %s.\n", groups[0].name);
579             continue;
580         }
581         opt++;
582
583 #define GET_ARG(arg)                                                           \
584 do {                                                                           \
585     arg = argv[optindex++];                                                    \
586     if (!arg) {                                                                \
587         av_log(NULL, AV_LOG_ERROR, "Missing argument for option '%s'.\n", opt);\
588         return AVERROR(EINVAL);                                                \
589     }                                                                          \
590 } while (0)
591
592         /* named group separators, e.g. -i */
593         if ((ret = match_group_separator(groups, nb_groups, opt)) >= 0) {
594             GET_ARG(arg);
595             finish_group(octx, ret, arg);
596             av_log(NULL, AV_LOG_DEBUG, " matched as %s with argument '%s'.\n",
597                    groups[ret].name, arg);
598             continue;
599         }
600
601         /* normal options */
602         po = find_option(options, opt);
603         if (po->name) {
604             if (po->flags & OPT_EXIT) {
605                 /* optional argument, e.g. -h */
606                 arg = argv[optindex++];
607             } else if (po->flags & HAS_ARG) {
608                 GET_ARG(arg);
609             } else {
610                 arg = "1";
611             }
612
613             add_opt(octx, po, opt, arg);
614             av_log(NULL, AV_LOG_DEBUG, " matched as option '%s' (%s) with "
615                    "argument '%s'.\n", po->name, po->help, arg);
616             continue;
617         }
618
619         /* AVOptions */
620         if (argv[optindex]) {
621             ret = opt_default(NULL, opt, argv[optindex]);
622             if (ret >= 0) {
623                 av_log(NULL, AV_LOG_DEBUG, " matched as AVOption '%s' with "
624                        "argument '%s'.\n", opt, argv[optindex]);
625                 optindex++;
626                 continue;
627             } else if (ret != AVERROR_OPTION_NOT_FOUND) {
628                 av_log(NULL, AV_LOG_ERROR, "Error parsing option '%s' "
629                        "with argument '%s'.\n", opt, argv[optindex]);
630                 return ret;
631             }
632         }
633
634         /* boolean -nofoo options */
635         if (opt[0] == 'n' && opt[1] == 'o' &&
636             (po = find_option(options, opt + 2)) &&
637             po->name && po->flags & OPT_BOOL) {
638             add_opt(octx, po, opt, "0");
639             av_log(NULL, AV_LOG_DEBUG, " matched as option '%s' (%s) with "
640                    "argument 0.\n", po->name, po->help);
641             continue;
642         }
643
644         av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'.\n", opt);
645         return AVERROR_OPTION_NOT_FOUND;
646     }
647
648     if (octx->cur_group.nb_opts || codec_opts || format_opts)
649         av_log(NULL, AV_LOG_WARNING, "Trailing options were found on the "
650                "commandline.\n");
651
652     av_log(NULL, AV_LOG_DEBUG, "Finished splitting the commandline.\n");
653
654     return 0;
655 }
656
657 int opt_loglevel(void *optctx, const char *opt, const char *arg)
658 {
659     const struct { const char *name; int level; } log_levels[] = {
660         { "quiet"  , AV_LOG_QUIET   },
661         { "panic"  , AV_LOG_PANIC   },
662         { "fatal"  , AV_LOG_FATAL   },
663         { "error"  , AV_LOG_ERROR   },
664         { "warning", AV_LOG_WARNING },
665         { "info"   , AV_LOG_INFO    },
666         { "verbose", AV_LOG_VERBOSE },
667         { "debug"  , AV_LOG_DEBUG   },
668     };
669     char *tail;
670     int level;
671     int i;
672
673     for (i = 0; i < FF_ARRAY_ELEMS(log_levels); i++) {
674         if (!strcmp(log_levels[i].name, arg)) {
675             av_log_set_level(log_levels[i].level);
676             return 0;
677         }
678     }
679
680     level = strtol(arg, &tail, 10);
681     if (*tail) {
682         av_log(NULL, AV_LOG_FATAL, "Invalid loglevel \"%s\". "
683                "Possible levels are numbers or:\n", arg);
684         for (i = 0; i < FF_ARRAY_ELEMS(log_levels); i++)
685             av_log(NULL, AV_LOG_FATAL, "\"%s\"\n", log_levels[i].name);
686         exit(1);
687     }
688     av_log_set_level(level);
689     return 0;
690 }
691
692 int opt_timelimit(void *optctx, const char *opt, const char *arg)
693 {
694 #if HAVE_SETRLIMIT
695     int lim = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
696     struct rlimit rl = { lim, lim + 1 };
697     if (setrlimit(RLIMIT_CPU, &rl))
698         perror("setrlimit");
699 #else
700     av_log(NULL, AV_LOG_WARNING, "-%s not implemented on this OS\n", opt);
701 #endif
702     return 0;
703 }
704
705 void print_error(const char *filename, int err)
706 {
707     char errbuf[128];
708     const char *errbuf_ptr = errbuf;
709
710     if (av_strerror(err, errbuf, sizeof(errbuf)) < 0)
711         errbuf_ptr = strerror(AVUNERROR(err));
712     av_log(NULL, AV_LOG_ERROR, "%s: %s\n", filename, errbuf_ptr);
713 }
714
715 static int warned_cfg = 0;
716
717 #define INDENT        1
718 #define SHOW_VERSION  2
719 #define SHOW_CONFIG   4
720
721 #define PRINT_LIB_INFO(libname, LIBNAME, flags, level)                  \
722     if (CONFIG_##LIBNAME) {                                             \
723         const char *indent = flags & INDENT? "  " : "";                 \
724         if (flags & SHOW_VERSION) {                                     \
725             unsigned int version = libname##_version();                 \
726             av_log(NULL, level,                                         \
727                    "%slib%-10s %2d.%3d.%2d / %2d.%3d.%2d\n",            \
728                    indent, #libname,                                    \
729                    LIB##LIBNAME##_VERSION_MAJOR,                        \
730                    LIB##LIBNAME##_VERSION_MINOR,                        \
731                    LIB##LIBNAME##_VERSION_MICRO,                        \
732                    version >> 16, version >> 8 & 0xff, version & 0xff); \
733         }                                                               \
734         if (flags & SHOW_CONFIG) {                                      \
735             const char *cfg = libname##_configuration();                \
736             if (strcmp(LIBAV_CONFIGURATION, cfg)) {                     \
737                 if (!warned_cfg) {                                      \
738                     av_log(NULL, level,                                 \
739                             "%sWARNING: library configuration mismatch\n", \
740                             indent);                                    \
741                     warned_cfg = 1;                                     \
742                 }                                                       \
743                 av_log(NULL, level, "%s%-11s configuration: %s\n",      \
744                         indent, #libname, cfg);                         \
745             }                                                           \
746         }                                                               \
747     }                                                                   \
748
749 static void print_all_libs_info(int flags, int level)
750 {
751     PRINT_LIB_INFO(avutil,   AVUTIL,   flags, level);
752     PRINT_LIB_INFO(avcodec,  AVCODEC,  flags, level);
753     PRINT_LIB_INFO(avformat, AVFORMAT, flags, level);
754     PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
755     PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
756     PRINT_LIB_INFO(avresample, AVRESAMPLE, flags, level);
757     PRINT_LIB_INFO(swscale,  SWSCALE,  flags, level);
758 }
759
760 void show_banner(void)
761 {
762     av_log(NULL, AV_LOG_INFO,
763            "%s version " LIBAV_VERSION ", Copyright (c) %d-%d the Libav developers\n",
764            program_name, program_birth_year, this_year);
765     av_log(NULL, AV_LOG_INFO, "  built on %s %s with %s\n",
766            __DATE__, __TIME__, CC_IDENT);
767     av_log(NULL, AV_LOG_VERBOSE, "  configuration: " LIBAV_CONFIGURATION "\n");
768     print_all_libs_info(INDENT|SHOW_CONFIG,  AV_LOG_VERBOSE);
769     print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_VERBOSE);
770 }
771
772 int show_version(void *optctx, const char *opt, const char *arg)
773 {
774     av_log_set_callback(log_callback_help);
775     printf("%s " LIBAV_VERSION "\n", program_name);
776     print_all_libs_info(SHOW_VERSION, AV_LOG_INFO);
777
778     return 0;
779 }
780
781 int show_license(void *optctx, const char *opt, const char *arg)
782 {
783     printf(
784 #if CONFIG_NONFREE
785     "This version of %s has nonfree parts compiled in.\n"
786     "Therefore it is not legally redistributable.\n",
787     program_name
788 #elif CONFIG_GPLV3
789     "%s is free software; you can redistribute it and/or modify\n"
790     "it under the terms of the GNU General Public License as published by\n"
791     "the Free Software Foundation; either version 3 of the License, or\n"
792     "(at your option) any later version.\n"
793     "\n"
794     "%s is distributed in the hope that it will be useful,\n"
795     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
796     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
797     "GNU General Public License for more details.\n"
798     "\n"
799     "You should have received a copy of the GNU General Public License\n"
800     "along with %s.  If not, see <http://www.gnu.org/licenses/>.\n",
801     program_name, program_name, program_name
802 #elif CONFIG_GPL
803     "%s is free software; you can redistribute it and/or modify\n"
804     "it under the terms of the GNU General Public License as published by\n"
805     "the Free Software Foundation; either version 2 of the License, or\n"
806     "(at your option) any later version.\n"
807     "\n"
808     "%s is distributed in the hope that it will be useful,\n"
809     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
810     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
811     "GNU General Public License for more details.\n"
812     "\n"
813     "You should have received a copy of the GNU General Public License\n"
814     "along with %s; if not, write to the Free Software\n"
815     "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n",
816     program_name, program_name, program_name
817 #elif CONFIG_LGPLV3
818     "%s is free software; you can redistribute it and/or modify\n"
819     "it under the terms of the GNU Lesser General Public License as published by\n"
820     "the Free Software Foundation; either version 3 of the License, or\n"
821     "(at your option) any later version.\n"
822     "\n"
823     "%s is distributed in the hope that it will be useful,\n"
824     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
825     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
826     "GNU Lesser General Public License for more details.\n"
827     "\n"
828     "You should have received a copy of the GNU Lesser General Public License\n"
829     "along with %s.  If not, see <http://www.gnu.org/licenses/>.\n",
830     program_name, program_name, program_name
831 #else
832     "%s is free software; you can redistribute it and/or\n"
833     "modify it under the terms of the GNU Lesser General Public\n"
834     "License as published by the Free Software Foundation; either\n"
835     "version 2.1 of the License, or (at your option) any later version.\n"
836     "\n"
837     "%s is distributed in the hope that it will be useful,\n"
838     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
839     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n"
840     "Lesser General Public License for more details.\n"
841     "\n"
842     "You should have received a copy of the GNU Lesser General Public\n"
843     "License along with %s; if not, write to the Free Software\n"
844     "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n",
845     program_name, program_name, program_name
846 #endif
847     );
848
849     return 0;
850 }
851
852 int show_formats(void *optctx, const char *opt, const char *arg)
853 {
854     AVInputFormat *ifmt  = NULL;
855     AVOutputFormat *ofmt = NULL;
856     const char *last_name;
857
858     printf("File formats:\n"
859            " D. = Demuxing supported\n"
860            " .E = Muxing supported\n"
861            " --\n");
862     last_name = "000";
863     for (;;) {
864         int decode = 0;
865         int encode = 0;
866         const char *name      = NULL;
867         const char *long_name = NULL;
868
869         while ((ofmt = av_oformat_next(ofmt))) {
870             if ((name == NULL || strcmp(ofmt->name, name) < 0) &&
871                 strcmp(ofmt->name, last_name) > 0) {
872                 name      = ofmt->name;
873                 long_name = ofmt->long_name;
874                 encode    = 1;
875             }
876         }
877         while ((ifmt = av_iformat_next(ifmt))) {
878             if ((name == NULL || strcmp(ifmt->name, name) < 0) &&
879                 strcmp(ifmt->name, last_name) > 0) {
880                 name      = ifmt->name;
881                 long_name = ifmt->long_name;
882                 encode    = 0;
883             }
884             if (name && strcmp(ifmt->name, name) == 0)
885                 decode = 1;
886         }
887         if (name == NULL)
888             break;
889         last_name = name;
890
891         printf(" %s%s %-15s %s\n",
892                decode ? "D" : " ",
893                encode ? "E" : " ",
894                name,
895             long_name ? long_name:" ");
896     }
897     return 0;
898 }
899
900 #define PRINT_CODEC_SUPPORTED(codec, field, type, list_name, term, get_name) \
901     if (codec->field) {                                                      \
902         const type *p = c->field;                                            \
903                                                                              \
904         printf("    Supported " list_name ":");                              \
905         while (*p != term) {                                                 \
906             get_name(*p);                                                    \
907             printf(" %s", name);                                             \
908             p++;                                                             \
909         }                                                                    \
910         printf("\n");                                                        \
911     }                                                                        \
912
913 static void print_codec(const AVCodec *c)
914 {
915     int encoder = av_codec_is_encoder(c);
916
917     printf("%s %s [%s]:\n", encoder ? "Encoder" : "Decoder", c->name,
918            c->long_name ? c->long_name : "");
919
920     if (c->type == AVMEDIA_TYPE_VIDEO) {
921         printf("    Threading capabilities: ");
922         switch (c->capabilities & (CODEC_CAP_FRAME_THREADS |
923                                    CODEC_CAP_SLICE_THREADS)) {
924         case CODEC_CAP_FRAME_THREADS |
925              CODEC_CAP_SLICE_THREADS: printf("frame and slice"); break;
926         case CODEC_CAP_FRAME_THREADS: printf("frame");           break;
927         case CODEC_CAP_SLICE_THREADS: printf("slice");           break;
928         default:                      printf("no");              break;
929         }
930         printf("\n");
931     }
932
933     if (c->supported_framerates) {
934         const AVRational *fps = c->supported_framerates;
935
936         printf("    Supported framerates:");
937         while (fps->num) {
938             printf(" %d/%d", fps->num, fps->den);
939             fps++;
940         }
941         printf("\n");
942     }
943     PRINT_CODEC_SUPPORTED(c, pix_fmts, enum AVPixelFormat, "pixel formats",
944                           AV_PIX_FMT_NONE, GET_PIX_FMT_NAME);
945     PRINT_CODEC_SUPPORTED(c, supported_samplerates, int, "sample rates", 0,
946                           GET_SAMPLE_RATE_NAME);
947     PRINT_CODEC_SUPPORTED(c, sample_fmts, enum AVSampleFormat, "sample formats",
948                           AV_SAMPLE_FMT_NONE, GET_SAMPLE_FMT_NAME);
949     PRINT_CODEC_SUPPORTED(c, channel_layouts, uint64_t, "channel layouts",
950                           0, GET_CH_LAYOUT_DESC);
951
952     if (c->priv_class) {
953         show_help_children(c->priv_class,
954                            AV_OPT_FLAG_ENCODING_PARAM |
955                            AV_OPT_FLAG_DECODING_PARAM);
956     }
957 }
958
959 static char get_media_type_char(enum AVMediaType type)
960 {
961     switch (type) {
962         case AVMEDIA_TYPE_VIDEO:    return 'V';
963         case AVMEDIA_TYPE_AUDIO:    return 'A';
964         case AVMEDIA_TYPE_SUBTITLE: return 'S';
965         default:                    return '?';
966     }
967 }
968
969 static const AVCodec *next_codec_for_id(enum AVCodecID id, const AVCodec *prev,
970                                         int encoder)
971 {
972     while ((prev = av_codec_next(prev))) {
973         if (prev->id == id &&
974             (encoder ? av_codec_is_encoder(prev) : av_codec_is_decoder(prev)))
975             return prev;
976     }
977     return NULL;
978 }
979
980 static void print_codecs_for_id(enum AVCodecID id, int encoder)
981 {
982     const AVCodec *codec = NULL;
983
984     printf(" (%s: ", encoder ? "encoders" : "decoders");
985
986     while ((codec = next_codec_for_id(id, codec, encoder)))
987         printf("%s ", codec->name);
988
989     printf(")");
990 }
991
992 int show_codecs(void *optctx, const char *opt, const char *arg)
993 {
994     const AVCodecDescriptor *desc = NULL;
995
996     printf("Codecs:\n"
997            " D..... = Decoding supported\n"
998            " .E.... = Encoding supported\n"
999            " ..V... = Video codec\n"
1000            " ..A... = Audio codec\n"
1001            " ..S... = Subtitle codec\n"
1002            " ...I.. = Intra frame-only codec\n"
1003            " ....L. = Lossy compression\n"
1004            " .....S = Lossless compression\n"
1005            " -------\n");
1006     while ((desc = avcodec_descriptor_next(desc))) {
1007         const AVCodec *codec = NULL;
1008
1009         printf(avcodec_find_decoder(desc->id) ? "D" : ".");
1010         printf(avcodec_find_encoder(desc->id) ? "E" : ".");
1011
1012         printf("%c", get_media_type_char(desc->type));
1013         printf((desc->props & AV_CODEC_PROP_INTRA_ONLY) ? "I" : ".");
1014         printf((desc->props & AV_CODEC_PROP_LOSSY)      ? "L" : ".");
1015         printf((desc->props & AV_CODEC_PROP_LOSSLESS)   ? "S" : ".");
1016
1017         printf(" %-20s %s", desc->name, desc->long_name ? desc->long_name : "");
1018
1019         /* print decoders/encoders when there's more than one or their
1020          * names are different from codec name */
1021         while ((codec = next_codec_for_id(desc->id, codec, 0))) {
1022             if (strcmp(codec->name, desc->name)) {
1023                 print_codecs_for_id(desc->id, 0);
1024                 break;
1025             }
1026         }
1027         codec = NULL;
1028         while ((codec = next_codec_for_id(desc->id, codec, 1))) {
1029             if (strcmp(codec->name, desc->name)) {
1030                 print_codecs_for_id(desc->id, 1);
1031                 break;
1032             }
1033         }
1034
1035         printf("\n");
1036     }
1037     return 0;
1038 }
1039
1040 static void print_codecs(int encoder)
1041 {
1042     const AVCodecDescriptor *desc = NULL;
1043
1044     printf("%s:\n"
1045            " V... = Video\n"
1046            " A... = Audio\n"
1047            " S... = Subtitle\n"
1048            " .F.. = Frame-level multithreading\n"
1049            " ..S. = Slice-level multithreading\n"
1050            " ...X = Codec is experimental\n"
1051            " ---\n",
1052            encoder ? "Encoders" : "Decoders");
1053     while ((desc = avcodec_descriptor_next(desc))) {
1054         const AVCodec *codec = NULL;
1055
1056         while ((codec = next_codec_for_id(desc->id, codec, encoder))) {
1057             printf("%c", get_media_type_char(desc->type));
1058             printf((codec->capabilities & CODEC_CAP_FRAME_THREADS) ? "F" : ".");
1059             printf((codec->capabilities & CODEC_CAP_SLICE_THREADS) ? "S" : ".");
1060             printf((codec->capabilities & CODEC_CAP_EXPERIMENTAL)  ? "X" : ".");
1061
1062             printf(" %-20s %s", codec->name, codec->long_name ? codec->long_name : "");
1063             if (strcmp(codec->name, desc->name))
1064                 printf(" (codec %s)", desc->name);
1065
1066             printf("\n");
1067         }
1068     }
1069 }
1070
1071 int show_decoders(void *optctx, const char *opt, const char *arg)
1072 {
1073     print_codecs(0);
1074     return 0;
1075 }
1076
1077 int show_encoders(void *optctx, const char *opt, const char *arg)
1078 {
1079     print_codecs(1);
1080     return 0;
1081 }
1082
1083 int show_bsfs(void *optctx, const char *opt, const char *arg)
1084 {
1085     AVBitStreamFilter *bsf = NULL;
1086
1087     printf("Bitstream filters:\n");
1088     while ((bsf = av_bitstream_filter_next(bsf)))
1089         printf("%s\n", bsf->name);
1090     printf("\n");
1091     return 0;
1092 }
1093
1094 int show_protocols(void *optctx, const char *opt, const char *arg)
1095 {
1096     void *opaque = NULL;
1097     const char *name;
1098
1099     printf("Supported file protocols:\n"
1100            "Input:\n");
1101     while ((name = avio_enum_protocols(&opaque, 0)))
1102         printf("%s\n", name);
1103     printf("Output:\n");
1104     while ((name = avio_enum_protocols(&opaque, 1)))
1105         printf("%s\n", name);
1106     return 0;
1107 }
1108
1109 int show_filters(void *optctx, const char *opt, const char *arg)
1110 {
1111     AVFilter av_unused(**filter) = NULL;
1112
1113     printf("Filters:\n");
1114 #if CONFIG_AVFILTER
1115     while ((filter = av_filter_next(filter)) && *filter)
1116         printf("%-16s %s\n", (*filter)->name, (*filter)->description);
1117 #endif
1118     return 0;
1119 }
1120
1121 int show_pix_fmts(void *optctx, const char *opt, const char *arg)
1122 {
1123     const AVPixFmtDescriptor *pix_desc = NULL;
1124
1125     printf("Pixel formats:\n"
1126            "I.... = Supported Input  format for conversion\n"
1127            ".O... = Supported Output format for conversion\n"
1128            "..H.. = Hardware accelerated format\n"
1129            "...P. = Paletted format\n"
1130            "....B = Bitstream format\n"
1131            "FLAGS NAME            NB_COMPONENTS BITS_PER_PIXEL\n"
1132            "-----\n");
1133
1134 #if !CONFIG_SWSCALE
1135 #   define sws_isSupportedInput(x)  0
1136 #   define sws_isSupportedOutput(x) 0
1137 #endif
1138
1139     while ((pix_desc = av_pix_fmt_desc_next(pix_desc))) {
1140         enum AVPixelFormat pix_fmt = av_pix_fmt_desc_get_id(pix_desc);
1141         printf("%c%c%c%c%c %-16s       %d            %2d\n",
1142                sws_isSupportedInput (pix_fmt)      ? 'I' : '.',
1143                sws_isSupportedOutput(pix_fmt)      ? 'O' : '.',
1144                pix_desc->flags & PIX_FMT_HWACCEL   ? 'H' : '.',
1145                pix_desc->flags & PIX_FMT_PAL       ? 'P' : '.',
1146                pix_desc->flags & PIX_FMT_BITSTREAM ? 'B' : '.',
1147                pix_desc->name,
1148                pix_desc->nb_components,
1149                av_get_bits_per_pixel(pix_desc));
1150     }
1151     return 0;
1152 }
1153
1154 int show_sample_fmts(void *optctx, const char *opt, const char *arg)
1155 {
1156     int i;
1157     char fmt_str[128];
1158     for (i = -1; i < AV_SAMPLE_FMT_NB; i++)
1159         printf("%s\n", av_get_sample_fmt_string(fmt_str, sizeof(fmt_str), i));
1160     return 0;
1161 }
1162
1163 static void show_help_codec(const char *name, int encoder)
1164 {
1165     const AVCodecDescriptor *desc;
1166     const AVCodec *codec;
1167
1168     if (!name) {
1169         av_log(NULL, AV_LOG_ERROR, "No codec name specified.\n");
1170         return;
1171     }
1172
1173     codec = encoder ? avcodec_find_encoder_by_name(name) :
1174                       avcodec_find_decoder_by_name(name);
1175
1176     if (codec)
1177         print_codec(codec);
1178     else if ((desc = avcodec_descriptor_get_by_name(name))) {
1179         int printed = 0;
1180
1181         while ((codec = next_codec_for_id(desc->id, codec, encoder))) {
1182             printed = 1;
1183             print_codec(codec);
1184         }
1185
1186         if (!printed) {
1187             av_log(NULL, AV_LOG_ERROR, "Codec '%s' is known to Libav, "
1188                    "but no %s for it are available. Libav might need to be "
1189                    "recompiled with additional external libraries.\n",
1190                    name, encoder ? "encoders" : "decoders");
1191         }
1192     } else {
1193         av_log(NULL, AV_LOG_ERROR, "Codec '%s' is not recognized by Libav.\n",
1194                name);
1195     }
1196 }
1197
1198 static void show_help_demuxer(const char *name)
1199 {
1200     const AVInputFormat *fmt = av_find_input_format(name);
1201
1202     if (!fmt) {
1203         av_log(NULL, AV_LOG_ERROR, "Unknown format '%s'.\n", name);
1204         return;
1205     }
1206
1207     printf("Demuxer %s [%s]:\n", fmt->name, fmt->long_name);
1208
1209     if (fmt->extensions)
1210         printf("    Common extensions: %s.\n", fmt->extensions);
1211
1212     if (fmt->priv_class)
1213         show_help_children(fmt->priv_class, AV_OPT_FLAG_DECODING_PARAM);
1214 }
1215
1216 static void show_help_muxer(const char *name)
1217 {
1218     const AVCodecDescriptor *desc;
1219     const AVOutputFormat *fmt = av_guess_format(name, NULL, NULL);
1220
1221     if (!fmt) {
1222         av_log(NULL, AV_LOG_ERROR, "Unknown format '%s'.\n", name);
1223         return;
1224     }
1225
1226     printf("Muxer %s [%s]:\n", fmt->name, fmt->long_name);
1227
1228     if (fmt->extensions)
1229         printf("    Common extensions: %s.\n", fmt->extensions);
1230     if (fmt->mime_type)
1231         printf("    Mime type: %s.\n", fmt->mime_type);
1232     if (fmt->video_codec != AV_CODEC_ID_NONE &&
1233         (desc = avcodec_descriptor_get(fmt->video_codec))) {
1234         printf("    Default video codec: %s.\n", desc->name);
1235     }
1236     if (fmt->audio_codec != AV_CODEC_ID_NONE &&
1237         (desc = avcodec_descriptor_get(fmt->audio_codec))) {
1238         printf("    Default audio codec: %s.\n", desc->name);
1239     }
1240     if (fmt->subtitle_codec != AV_CODEC_ID_NONE &&
1241         (desc = avcodec_descriptor_get(fmt->subtitle_codec))) {
1242         printf("    Default subtitle codec: %s.\n", desc->name);
1243     }
1244
1245     if (fmt->priv_class)
1246         show_help_children(fmt->priv_class, AV_OPT_FLAG_ENCODING_PARAM);
1247 }
1248
1249 int show_help(void *optctx, const char *opt, const char *arg)
1250 {
1251     char *topic, *par;
1252     av_log_set_callback(log_callback_help);
1253
1254     topic = av_strdup(arg ? arg : "");
1255     par = strchr(topic, '=');
1256     if (par)
1257         *par++ = 0;
1258
1259     if (!*topic) {
1260         show_help_default(topic, par);
1261     } else if (!strcmp(topic, "decoder")) {
1262         show_help_codec(par, 0);
1263     } else if (!strcmp(topic, "encoder")) {
1264         show_help_codec(par, 1);
1265     } else if (!strcmp(topic, "demuxer")) {
1266         show_help_demuxer(par);
1267     } else if (!strcmp(topic, "muxer")) {
1268         show_help_muxer(par);
1269     } else {
1270         show_help_default(topic, par);
1271     }
1272
1273     av_freep(&topic);
1274     return 0;
1275 }
1276
1277 int read_yesno(void)
1278 {
1279     int c = getchar();
1280     int yesno = (toupper(c) == 'Y');
1281
1282     while (c != '\n' && c != EOF)
1283         c = getchar();
1284
1285     return yesno;
1286 }
1287
1288 int cmdutils_read_file(const char *filename, char **bufptr, size_t *size)
1289 {
1290     int ret;
1291     FILE *f = fopen(filename, "rb");
1292
1293     if (!f) {
1294         av_log(NULL, AV_LOG_ERROR, "Cannot read file '%s': %s\n", filename,
1295                strerror(errno));
1296         return AVERROR(errno);
1297     }
1298     fseek(f, 0, SEEK_END);
1299     *size = ftell(f);
1300     fseek(f, 0, SEEK_SET);
1301     *bufptr = av_malloc(*size + 1);
1302     if (!*bufptr) {
1303         av_log(NULL, AV_LOG_ERROR, "Could not allocate file buffer\n");
1304         fclose(f);
1305         return AVERROR(ENOMEM);
1306     }
1307     ret = fread(*bufptr, 1, *size, f);
1308     if (ret < *size) {
1309         av_free(*bufptr);
1310         if (ferror(f)) {
1311             av_log(NULL, AV_LOG_ERROR, "Error while reading file '%s': %s\n",
1312                    filename, strerror(errno));
1313             ret = AVERROR(errno);
1314         } else
1315             ret = AVERROR_EOF;
1316     } else {
1317         ret = 0;
1318         (*bufptr)[(*size)++] = '\0';
1319     }
1320
1321     fclose(f);
1322     return ret;
1323 }
1324
1325 void init_pts_correction(PtsCorrectionContext *ctx)
1326 {
1327     ctx->num_faulty_pts = ctx->num_faulty_dts = 0;
1328     ctx->last_pts = ctx->last_dts = INT64_MIN;
1329 }
1330
1331 int64_t guess_correct_pts(PtsCorrectionContext *ctx, int64_t reordered_pts,
1332                           int64_t dts)
1333 {
1334     int64_t pts = AV_NOPTS_VALUE;
1335
1336     if (dts != AV_NOPTS_VALUE) {
1337         ctx->num_faulty_dts += dts <= ctx->last_dts;
1338         ctx->last_dts = dts;
1339     }
1340     if (reordered_pts != AV_NOPTS_VALUE) {
1341         ctx->num_faulty_pts += reordered_pts <= ctx->last_pts;
1342         ctx->last_pts = reordered_pts;
1343     }
1344     if ((ctx->num_faulty_pts<=ctx->num_faulty_dts || dts == AV_NOPTS_VALUE)
1345         && reordered_pts != AV_NOPTS_VALUE)
1346         pts = reordered_pts;
1347     else
1348         pts = dts;
1349
1350     return pts;
1351 }
1352
1353 FILE *get_preset_file(char *filename, size_t filename_size,
1354                       const char *preset_name, int is_path,
1355                       const char *codec_name)
1356 {
1357     FILE *f = NULL;
1358     int i;
1359     const char *base[3] = { getenv("AVCONV_DATADIR"),
1360                             getenv("HOME"),
1361                             AVCONV_DATADIR, };
1362
1363     if (is_path) {
1364         av_strlcpy(filename, preset_name, filename_size);
1365         f = fopen(filename, "r");
1366     } else {
1367         for (i = 0; i < 3 && !f; i++) {
1368             if (!base[i])
1369                 continue;
1370             snprintf(filename, filename_size, "%s%s/%s.avpreset", base[i],
1371                      i != 1 ? "" : "/.avconv", preset_name);
1372             f = fopen(filename, "r");
1373             if (!f && codec_name) {
1374                 snprintf(filename, filename_size,
1375                          "%s%s/%s-%s.avpreset",
1376                          base[i], i != 1 ? "" : "/.avconv", codec_name,
1377                          preset_name);
1378                 f = fopen(filename, "r");
1379             }
1380         }
1381     }
1382
1383     return f;
1384 }
1385
1386 int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
1387 {
1388     if (*spec <= '9' && *spec >= '0') /* opt:index */
1389         return strtol(spec, NULL, 0) == st->index;
1390     else if (*spec == 'v' || *spec == 'a' || *spec == 's' || *spec == 'd' ||
1391              *spec == 't') { /* opt:[vasdt] */
1392         enum AVMediaType type;
1393
1394         switch (*spec++) {
1395         case 'v': type = AVMEDIA_TYPE_VIDEO;      break;
1396         case 'a': type = AVMEDIA_TYPE_AUDIO;      break;
1397         case 's': type = AVMEDIA_TYPE_SUBTITLE;   break;
1398         case 'd': type = AVMEDIA_TYPE_DATA;       break;
1399         case 't': type = AVMEDIA_TYPE_ATTACHMENT; break;
1400         default:  av_assert0(0);
1401         }
1402         if (type != st->codec->codec_type)
1403             return 0;
1404         if (*spec++ == ':') { /* possibly followed by :index */
1405             int i, index = strtol(spec, NULL, 0);
1406             for (i = 0; i < s->nb_streams; i++)
1407                 if (s->streams[i]->codec->codec_type == type && index-- == 0)
1408                    return i == st->index;
1409             return 0;
1410         }
1411         return 1;
1412     } else if (*spec == 'p' && *(spec + 1) == ':') {
1413         int prog_id, i, j;
1414         char *endptr;
1415         spec += 2;
1416         prog_id = strtol(spec, &endptr, 0);
1417         for (i = 0; i < s->nb_programs; i++) {
1418             if (s->programs[i]->id != prog_id)
1419                 continue;
1420
1421             if (*endptr++ == ':') {
1422                 int stream_idx = strtol(endptr, NULL, 0);
1423                 return stream_idx >= 0 &&
1424                     stream_idx < s->programs[i]->nb_stream_indexes &&
1425                     st->index == s->programs[i]->stream_index[stream_idx];
1426             }
1427
1428             for (j = 0; j < s->programs[i]->nb_stream_indexes; j++)
1429                 if (st->index == s->programs[i]->stream_index[j])
1430                     return 1;
1431         }
1432         return 0;
1433     } else if (!*spec) /* empty specifier, matches everything */
1434         return 1;
1435
1436     av_log(s, AV_LOG_ERROR, "Invalid stream specifier: %s.\n", spec);
1437     return AVERROR(EINVAL);
1438 }
1439
1440 AVDictionary *filter_codec_opts(AVDictionary *opts, enum AVCodecID codec_id,
1441                                 AVFormatContext *s, AVStream *st, AVCodec *codec)
1442 {
1443     AVDictionary    *ret = NULL;
1444     AVDictionaryEntry *t = NULL;
1445     int            flags = s->oformat ? AV_OPT_FLAG_ENCODING_PARAM
1446                                       : AV_OPT_FLAG_DECODING_PARAM;
1447     char          prefix = 0;
1448     const AVClass    *cc = avcodec_get_class();
1449
1450     if (!codec)
1451         codec            = s->oformat ? avcodec_find_encoder(codec_id)
1452                                       : avcodec_find_decoder(codec_id);
1453     if (!codec)
1454         return NULL;
1455
1456     switch (codec->type) {
1457     case AVMEDIA_TYPE_VIDEO:
1458         prefix  = 'v';
1459         flags  |= AV_OPT_FLAG_VIDEO_PARAM;
1460         break;
1461     case AVMEDIA_TYPE_AUDIO:
1462         prefix  = 'a';
1463         flags  |= AV_OPT_FLAG_AUDIO_PARAM;
1464         break;
1465     case AVMEDIA_TYPE_SUBTITLE:
1466         prefix  = 's';
1467         flags  |= AV_OPT_FLAG_SUBTITLE_PARAM;
1468         break;
1469     }
1470
1471     while (t = av_dict_get(opts, "", t, AV_DICT_IGNORE_SUFFIX)) {
1472         char *p = strchr(t->key, ':');
1473
1474         /* check stream specification in opt name */
1475         if (p)
1476             switch (check_stream_specifier(s, st, p + 1)) {
1477             case  1: *p = 0; break;
1478             case  0:         continue;
1479             default:         return NULL;
1480             }
1481
1482         if (av_opt_find(&cc, t->key, NULL, flags, AV_OPT_SEARCH_FAKE_OBJ) ||
1483             (codec && codec->priv_class &&
1484              av_opt_find(&codec->priv_class, t->key, NULL, flags,
1485                          AV_OPT_SEARCH_FAKE_OBJ)))
1486             av_dict_set(&ret, t->key, t->value, 0);
1487         else if (t->key[0] == prefix &&
1488                  av_opt_find(&cc, t->key + 1, NULL, flags,
1489                              AV_OPT_SEARCH_FAKE_OBJ))
1490             av_dict_set(&ret, t->key + 1, t->value, 0);
1491
1492         if (p)
1493             *p = ':';
1494     }
1495     return ret;
1496 }
1497
1498 AVDictionary **setup_find_stream_info_opts(AVFormatContext *s,
1499                                            AVDictionary *codec_opts)
1500 {
1501     int i;
1502     AVDictionary **opts;
1503
1504     if (!s->nb_streams)
1505         return NULL;
1506     opts = av_mallocz(s->nb_streams * sizeof(*opts));
1507     if (!opts) {
1508         av_log(NULL, AV_LOG_ERROR,
1509                "Could not alloc memory for stream options.\n");
1510         return NULL;
1511     }
1512     for (i = 0; i < s->nb_streams; i++)
1513         opts[i] = filter_codec_opts(codec_opts, s->streams[i]->codec->codec_id,
1514                                     s, s->streams[i], NULL);
1515     return opts;
1516 }
1517
1518 void *grow_array(void *array, int elem_size, int *size, int new_size)
1519 {
1520     if (new_size >= INT_MAX / elem_size) {
1521         av_log(NULL, AV_LOG_ERROR, "Array too big.\n");
1522         exit(1);
1523     }
1524     if (*size < new_size) {
1525         uint8_t *tmp = av_realloc(array, new_size*elem_size);
1526         if (!tmp) {
1527             av_log(NULL, AV_LOG_ERROR, "Could not alloc buffer.\n");
1528             exit(1);
1529         }
1530         memset(tmp + *size*elem_size, 0, (new_size-*size) * elem_size);
1531         *size = new_size;
1532         return tmp;
1533     }
1534     return array;
1535 }
1536
1537 static int alloc_buffer(FrameBuffer **pool, AVCodecContext *s, FrameBuffer **pbuf)
1538 {
1539     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(s->pix_fmt);
1540     FrameBuffer *buf;
1541     int i, ret;
1542     int pixel_size;
1543     int h_chroma_shift, v_chroma_shift;
1544     int edge = 32; // XXX should be avcodec_get_edge_width(), but that fails on svq1
1545     int w = s->width, h = s->height;
1546
1547     if (!desc)
1548         return AVERROR(EINVAL);
1549     pixel_size = desc->comp[0].step_minus1 + 1;
1550
1551     buf = av_mallocz(sizeof(*buf));
1552     if (!buf)
1553         return AVERROR(ENOMEM);
1554
1555     if (!(s->flags & CODEC_FLAG_EMU_EDGE)) {
1556         w += 2*edge;
1557         h += 2*edge;
1558     }
1559
1560     avcodec_align_dimensions(s, &w, &h);
1561     if ((ret = av_image_alloc(buf->base, buf->linesize, w, h,
1562                               s->pix_fmt, 32)) < 0) {
1563         av_freep(&buf);
1564         return ret;
1565     }
1566
1567     av_pix_fmt_get_chroma_sub_sample(s->pix_fmt,
1568                                      &h_chroma_shift, &v_chroma_shift);
1569
1570     for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
1571         const int h_shift = i==0 ? 0 : h_chroma_shift;
1572         const int v_shift = i==0 ? 0 : v_chroma_shift;
1573         if (s->flags & CODEC_FLAG_EMU_EDGE)
1574             buf->data[i] = buf->base[i];
1575         else if (buf->base[i])
1576             buf->data[i] = buf->base[i] +
1577                            FFALIGN((buf->linesize[i]*edge >> v_shift) +
1578                                    (pixel_size*edge >> h_shift), 32);
1579     }
1580     buf->w       = s->width;
1581     buf->h       = s->height;
1582     buf->pix_fmt = s->pix_fmt;
1583     buf->pool    = pool;
1584
1585     *pbuf = buf;
1586     return 0;
1587 }
1588
1589 int codec_get_buffer(AVCodecContext *s, AVFrame *frame)
1590 {
1591     FrameBuffer **pool = s->opaque;
1592     FrameBuffer *buf;
1593     int ret, i;
1594
1595     if (!*pool && (ret = alloc_buffer(pool, s, pool)) < 0)
1596         return ret;
1597
1598     buf              = *pool;
1599     *pool            = buf->next;
1600     buf->next        = NULL;
1601     if (buf->w != s->width || buf->h != s->height || buf->pix_fmt != s->pix_fmt) {
1602         av_freep(&buf->base[0]);
1603         av_free(buf);
1604         if ((ret = alloc_buffer(pool, s, &buf)) < 0)
1605             return ret;
1606     }
1607     buf->refcount++;
1608
1609     frame->opaque        = buf;
1610     frame->type          = FF_BUFFER_TYPE_USER;
1611     frame->extended_data = frame->data;
1612
1613     for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
1614         frame->base[i]     = buf->base[i];  // XXX h264.c uses base though it shouldn't
1615         frame->data[i]     = buf->data[i];
1616         frame->linesize[i] = buf->linesize[i];
1617     }
1618
1619     return 0;
1620 }
1621
1622 static void unref_buffer(FrameBuffer *buf)
1623 {
1624     FrameBuffer **pool = buf->pool;
1625
1626     av_assert0(buf->refcount);
1627     buf->refcount--;
1628     if (!buf->refcount) {
1629         buf->next = *pool;
1630         *pool = buf;
1631     }
1632 }
1633
1634 void codec_release_buffer(AVCodecContext *s, AVFrame *frame)
1635 {
1636     FrameBuffer *buf = frame->opaque;
1637     int i;
1638
1639     for (i = 0; i < FF_ARRAY_ELEMS(frame->data); i++)
1640         frame->data[i] = NULL;
1641
1642     unref_buffer(buf);
1643 }
1644
1645 void filter_release_buffer(AVFilterBuffer *fb)
1646 {
1647     FrameBuffer *buf = fb->priv;
1648     av_free(fb);
1649     unref_buffer(buf);
1650 }
1651
1652 void free_buffer_pool(FrameBuffer **pool)
1653 {
1654     FrameBuffer *buf = *pool;
1655     while (buf) {
1656         *pool = buf->next;
1657         av_freep(&buf->base[0]);
1658         av_free(buf);
1659         buf = *pool;
1660     }
1661 }