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