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