]> git.sesse.net Git - ffmpeg/blob - cmdutils.c
8svx: remove malloc and memcpy that have become unneeded
[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 || 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     char opt_stripped[128];
440     const char *p;
441     const AVClass *cc = avcodec_get_class(), *fc = avformat_get_class(), *sc, *swr_class;
442
443     if (!(p = strchr(opt, ':')))
444         p = opt + strlen(opt);
445     av_strlcpy(opt_stripped, opt, FFMIN(sizeof(opt_stripped), p - opt + 1));
446
447     if ((o = av_opt_find(&cc, opt_stripped, NULL, 0,
448                          AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) ||
449         ((opt[0] == 'v' || opt[0] == 'a' || opt[0] == 's') &&
450          (o = av_opt_find(&cc, opt + 1, NULL, 0, AV_OPT_SEARCH_FAKE_OBJ))))
451         av_dict_set(&codec_opts, opt, arg, FLAGS);
452     else if ((o = av_opt_find(&fc, opt, NULL, 0,
453                               AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)))
454         av_dict_set(&format_opts, opt, arg, FLAGS);
455 #if CONFIG_SWSCALE
456     sc = sws_get_class();
457     if (!o && (o = av_opt_find(&sc, opt, NULL, 0,
458                          AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) {
459         // XXX we only support sws_flags, not arbitrary sws options
460         int ret = av_opt_set(sws_opts, opt, arg, 0);
461         if (ret < 0) {
462             av_log(NULL, AV_LOG_ERROR, "Error setting option %s.\n", opt);
463             return ret;
464         }
465     }
466 #endif
467 #if CONFIG_SWRESAMPLE
468     swr_class = swr_get_class();
469     if (!o && (o = av_opt_find(&swr_class, opt, NULL, 0,
470                                AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) {
471         int ret = av_opt_set(swr_opts, opt, arg, 0);
472         if (ret < 0) {
473             av_log(NULL, AV_LOG_ERROR, "Error setting option %s.\n", opt);
474             return ret;
475         }
476     }
477 #endif
478
479     if (o)
480         return 0;
481     av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt);
482     return AVERROR_OPTION_NOT_FOUND;
483 }
484
485 int opt_loglevel(void *optctx, const char *opt, const char *arg)
486 {
487     const struct { const char *name; int level; } log_levels[] = {
488         { "quiet"  , AV_LOG_QUIET   },
489         { "panic"  , AV_LOG_PANIC   },
490         { "fatal"  , AV_LOG_FATAL   },
491         { "error"  , AV_LOG_ERROR   },
492         { "warning", AV_LOG_WARNING },
493         { "info"   , AV_LOG_INFO    },
494         { "verbose", AV_LOG_VERBOSE },
495         { "debug"  , AV_LOG_DEBUG   },
496     };
497     char *tail;
498     int level;
499     int i;
500
501     for (i = 0; i < FF_ARRAY_ELEMS(log_levels); i++) {
502         if (!strcmp(log_levels[i].name, arg)) {
503             av_log_set_level(log_levels[i].level);
504             return 0;
505         }
506     }
507
508     level = strtol(arg, &tail, 10);
509     if (*tail) {
510         av_log(NULL, AV_LOG_FATAL, "Invalid loglevel \"%s\". "
511                "Possible levels are numbers or:\n", arg);
512         for (i = 0; i < FF_ARRAY_ELEMS(log_levels); i++)
513             av_log(NULL, AV_LOG_FATAL, "\"%s\"\n", log_levels[i].name);
514         exit(1);
515     }
516     av_log_set_level(level);
517     return 0;
518 }
519
520 int opt_report(const char *opt)
521 {
522     char filename[64];
523     time_t now;
524     struct tm *tm;
525
526     if (report_file) /* already opened */
527         return 0;
528     time(&now);
529     tm = localtime(&now);
530     snprintf(filename, sizeof(filename), "%s-%04d%02d%02d-%02d%02d%02d.log",
531              program_name,
532              tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
533              tm->tm_hour, tm->tm_min, tm->tm_sec);
534     report_file = fopen(filename, "w");
535     if (!report_file) {
536         av_log(NULL, AV_LOG_ERROR, "Failed to open report \"%s\": %s\n",
537                filename, strerror(errno));
538         return AVERROR(errno);
539     }
540     av_log_set_callback(log_callback_report);
541     av_log(NULL, AV_LOG_INFO,
542            "%s started on %04d-%02d-%02d at %02d:%02d:%02d\n"
543            "Report written to \"%s\"\n",
544            program_name,
545            tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
546            tm->tm_hour, tm->tm_min, tm->tm_sec,
547            filename);
548     av_log_set_level(FFMAX(av_log_get_level(), AV_LOG_VERBOSE));
549     return 0;
550 }
551
552 int opt_max_alloc(void *optctx, const char *opt, const char *arg)
553 {
554     char *tail;
555     size_t max;
556
557     max = strtol(arg, &tail, 10);
558     if (*tail) {
559         av_log(NULL, AV_LOG_FATAL, "Invalid max_alloc \"%s\".\n", arg);
560         exit(1);
561     }
562     av_max_alloc(max);
563     return 0;
564 }
565
566 int opt_cpuflags(void *optctx, const char *opt, const char *arg)
567 {
568     int ret;
569     unsigned flags = av_get_cpu_flags();
570
571     if ((ret = av_parse_cpu_caps(&flags, arg)) < 0)
572         return ret;
573
574     av_force_cpu_flags(flags);
575     return 0;
576 }
577
578 int opt_codec_debug(void *optctx, const char *opt, const char *arg)
579 {
580     av_log_set_level(AV_LOG_DEBUG);
581     return opt_default(NULL, opt, arg);
582 }
583
584 int opt_timelimit(void *optctx, const char *opt, const char *arg)
585 {
586 #if HAVE_SETRLIMIT
587     int lim = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
588     struct rlimit rl = { lim, lim + 1 };
589     if (setrlimit(RLIMIT_CPU, &rl))
590         perror("setrlimit");
591 #else
592     av_log(NULL, AV_LOG_WARNING, "-%s not implemented on this OS\n", opt);
593 #endif
594     return 0;
595 }
596
597 void print_error(const char *filename, int err)
598 {
599     char errbuf[128];
600     const char *errbuf_ptr = errbuf;
601
602     if (av_strerror(err, errbuf, sizeof(errbuf)) < 0)
603         errbuf_ptr = strerror(AVUNERROR(err));
604     av_log(NULL, AV_LOG_ERROR, "%s: %s\n", filename, errbuf_ptr);
605 }
606
607 static int warned_cfg = 0;
608
609 #define INDENT        1
610 #define SHOW_VERSION  2
611 #define SHOW_CONFIG   4
612 #define SHOW_COPYRIGHT 8
613
614 #define PRINT_LIB_INFO(libname, LIBNAME, flags, level)                  \
615     if (CONFIG_##LIBNAME) {                                             \
616         const char *indent = flags & INDENT? "  " : "";                 \
617         if (flags & SHOW_VERSION) {                                     \
618             unsigned int version = libname##_version();                 \
619             av_log(NULL, level,                                         \
620                    "%slib%-11s %2d.%3d.%3d / %2d.%3d.%3d\n",            \
621                    indent, #libname,                                    \
622                    LIB##LIBNAME##_VERSION_MAJOR,                        \
623                    LIB##LIBNAME##_VERSION_MINOR,                        \
624                    LIB##LIBNAME##_VERSION_MICRO,                        \
625                    version >> 16, version >> 8 & 0xff, version & 0xff); \
626         }                                                               \
627         if (flags & SHOW_CONFIG) {                                      \
628             const char *cfg = libname##_configuration();                \
629             if (strcmp(FFMPEG_CONFIGURATION, cfg)) {                    \
630                 if (!warned_cfg) {                                      \
631                     av_log(NULL, level,                                 \
632                             "%sWARNING: library configuration mismatch\n", \
633                             indent);                                    \
634                     warned_cfg = 1;                                     \
635                 }                                                       \
636                 av_log(NULL, level, "%s%-11s configuration: %s\n",      \
637                         indent, #libname, cfg);                         \
638             }                                                           \
639         }                                                               \
640     }                                                                   \
641
642 static void print_all_libs_info(int flags, int level)
643 {
644     PRINT_LIB_INFO(avutil,   AVUTIL,   flags, level);
645     PRINT_LIB_INFO(avcodec,  AVCODEC,  flags, level);
646     PRINT_LIB_INFO(avformat, AVFORMAT, flags, level);
647     PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
648     PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
649 //    PRINT_LIB_INFO(avresample, AVRESAMPLE, flags, level);
650     PRINT_LIB_INFO(swscale,  SWSCALE,  flags, level);
651     PRINT_LIB_INFO(swresample,SWRESAMPLE,  flags, level);
652 #if CONFIG_POSTPROC
653     PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
654 #endif
655 }
656
657 static void print_program_info(int flags, int level)
658 {
659     const char *indent = flags & INDENT? "  " : "";
660
661     av_log(NULL, level, "%s version " FFMPEG_VERSION, program_name);
662     if (flags & SHOW_COPYRIGHT)
663         av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers",
664                program_birth_year, this_year);
665     av_log(NULL, level, "\n");
666     av_log(NULL, level, "%sbuilt on %s %s with %s\n",
667            indent, __DATE__, __TIME__, CC_IDENT);
668
669     av_log(NULL, level, "%sconfiguration: " FFMPEG_CONFIGURATION "\n", indent);
670 }
671
672 void show_banner(int argc, char **argv, const OptionDef *options)
673 {
674     int idx = locate_option(argc, argv, options, "version");
675     if (idx)
676         return;
677
678     print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO);
679     print_all_libs_info(INDENT|SHOW_CONFIG,  AV_LOG_INFO);
680     print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_INFO);
681 }
682
683 int show_version(void *optctx, const char *opt, const char *arg)
684 {
685     av_log_set_callback(log_callback_help);
686     print_program_info (0           , AV_LOG_INFO);
687     print_all_libs_info(SHOW_VERSION, AV_LOG_INFO);
688
689     return 0;
690 }
691
692 int show_license(void *optctx, const char *opt, const char *arg)
693 {
694     printf(
695 #if CONFIG_NONFREE
696     "This version of %s has nonfree parts compiled in.\n"
697     "Therefore it is not legally redistributable.\n",
698     program_name
699 #elif CONFIG_GPLV3
700     "%s is free software; you can redistribute it and/or modify\n"
701     "it under the terms of the GNU General Public License as published by\n"
702     "the Free Software Foundation; either version 3 of the License, or\n"
703     "(at your option) any later version.\n"
704     "\n"
705     "%s is distributed in the hope that it will be useful,\n"
706     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
707     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
708     "GNU General Public License for more details.\n"
709     "\n"
710     "You should have received a copy of the GNU General Public License\n"
711     "along with %s.  If not, see <http://www.gnu.org/licenses/>.\n",
712     program_name, program_name, program_name
713 #elif CONFIG_GPL
714     "%s is free software; you can redistribute it and/or modify\n"
715     "it under the terms of the GNU General Public License as published by\n"
716     "the Free Software Foundation; either version 2 of the License, or\n"
717     "(at your option) any later version.\n"
718     "\n"
719     "%s is distributed in the hope that it will be useful,\n"
720     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
721     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
722     "GNU General Public License for more details.\n"
723     "\n"
724     "You should have received a copy of the GNU General Public License\n"
725     "along with %s; if not, write to the Free Software\n"
726     "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n",
727     program_name, program_name, program_name
728 #elif CONFIG_LGPLV3
729     "%s is free software; you can redistribute it and/or modify\n"
730     "it under the terms of the GNU Lesser General Public License as published by\n"
731     "the Free Software Foundation; either version 3 of the License, or\n"
732     "(at your option) any later version.\n"
733     "\n"
734     "%s is distributed in the hope that it will be useful,\n"
735     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
736     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
737     "GNU Lesser General Public License for more details.\n"
738     "\n"
739     "You should have received a copy of the GNU Lesser General Public License\n"
740     "along with %s.  If not, see <http://www.gnu.org/licenses/>.\n",
741     program_name, program_name, program_name
742 #else
743     "%s is free software; you can redistribute it and/or\n"
744     "modify it under the terms of the GNU Lesser General Public\n"
745     "License as published by the Free Software Foundation; either\n"
746     "version 2.1 of the License, or (at your option) any later version.\n"
747     "\n"
748     "%s is distributed in the hope that it will be useful,\n"
749     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
750     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n"
751     "Lesser General Public License for more details.\n"
752     "\n"
753     "You should have received a copy of the GNU Lesser General Public\n"
754     "License along with %s; if not, write to the Free Software\n"
755     "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n",
756     program_name, program_name, program_name
757 #endif
758     );
759
760     return 0;
761 }
762
763 int show_formats(void *optctx, const char *opt, const char *arg)
764 {
765     AVInputFormat *ifmt  = NULL;
766     AVOutputFormat *ofmt = NULL;
767     const char *last_name;
768
769     printf("File formats:\n"
770            " D. = Demuxing supported\n"
771            " .E = Muxing supported\n"
772            " --\n");
773     last_name = "000";
774     for (;;) {
775         int decode = 0;
776         int encode = 0;
777         const char *name      = NULL;
778         const char *long_name = NULL;
779
780         while ((ofmt = av_oformat_next(ofmt))) {
781             if ((name == NULL || strcmp(ofmt->name, name) < 0) &&
782                 strcmp(ofmt->name, last_name) > 0) {
783                 name      = ofmt->name;
784                 long_name = ofmt->long_name;
785                 encode    = 1;
786             }
787         }
788         while ((ifmt = av_iformat_next(ifmt))) {
789             if ((name == NULL || strcmp(ifmt->name, name) < 0) &&
790                 strcmp(ifmt->name, last_name) > 0) {
791                 name      = ifmt->name;
792                 long_name = ifmt->long_name;
793                 encode    = 0;
794             }
795             if (name && strcmp(ifmt->name, name) == 0)
796                 decode = 1;
797         }
798         if (name == NULL)
799             break;
800         last_name = name;
801
802         printf(" %s%s %-15s %s\n",
803                decode ? "D" : " ",
804                encode ? "E" : " ",
805                name,
806             long_name ? long_name:" ");
807     }
808     return 0;
809 }
810
811 #define PRINT_CODEC_SUPPORTED(codec, field, type, list_name, term, get_name) \
812     if (codec->field) {                                                      \
813         const type *p = c->field;                                            \
814                                                                              \
815         printf("    Supported " list_name ":");                              \
816         while (*p != term) {                                                 \
817             get_name(*p);                                                    \
818             printf(" %s", name);                                             \
819             p++;                                                             \
820         }                                                                    \
821         printf("\n");                                                        \
822     }                                                                        \
823
824 static void print_codec(const AVCodec *c)
825 {
826     int encoder = av_codec_is_encoder(c);
827
828     printf("%s %s [%s]:\n", encoder ? "Encoder" : "Decoder", c->name,
829            c->long_name ? c->long_name : "");
830
831     if (c->type == AVMEDIA_TYPE_VIDEO) {
832         printf("    Threading capabilities: ");
833         switch (c->capabilities & (CODEC_CAP_FRAME_THREADS |
834                                    CODEC_CAP_SLICE_THREADS)) {
835         case CODEC_CAP_FRAME_THREADS |
836              CODEC_CAP_SLICE_THREADS: printf("frame and slice"); break;
837         case CODEC_CAP_FRAME_THREADS: printf("frame");           break;
838         case CODEC_CAP_SLICE_THREADS: printf("slice");           break;
839         default:                      printf("no");              break;
840         }
841         printf("\n");
842     }
843
844     if (c->supported_framerates) {
845         const AVRational *fps = c->supported_framerates;
846
847         printf("    Supported framerates:");
848         while (fps->num) {
849             printf(" %d/%d", fps->num, fps->den);
850             fps++;
851         }
852         printf("\n");
853     }
854     PRINT_CODEC_SUPPORTED(c, pix_fmts, enum PixelFormat, "pixel formats",
855                           PIX_FMT_NONE, GET_PIX_FMT_NAME);
856     PRINT_CODEC_SUPPORTED(c, supported_samplerates, int, "sample rates", 0,
857                           GET_SAMPLE_RATE_NAME);
858     PRINT_CODEC_SUPPORTED(c, sample_fmts, enum AVSampleFormat, "sample formats",
859                           AV_SAMPLE_FMT_NONE, GET_SAMPLE_FMT_NAME);
860     PRINT_CODEC_SUPPORTED(c, channel_layouts, uint64_t, "channel layouts",
861                           0, GET_CH_LAYOUT_DESC);
862
863     if (c->priv_class) {
864         show_help_children(c->priv_class,
865                            AV_OPT_FLAG_ENCODING_PARAM |
866                            AV_OPT_FLAG_DECODING_PARAM);
867     }
868 }
869
870 static char get_media_type_char(enum AVMediaType type)
871 {
872     switch (type) {
873         case AVMEDIA_TYPE_VIDEO:    return 'V';
874         case AVMEDIA_TYPE_AUDIO:    return 'A';
875         case AVMEDIA_TYPE_DATA:     return 'D';
876         case AVMEDIA_TYPE_SUBTITLE: return 'S';
877         case AVMEDIA_TYPE_ATTACHMENT:return 'T';
878         default:                    return '?';
879     }
880 }
881
882 static const AVCodec *next_codec_for_id(enum AVCodecID id, const AVCodec *prev,
883                                         int encoder)
884 {
885     while ((prev = av_codec_next(prev))) {
886         if (prev->id == id &&
887             (encoder ? av_codec_is_encoder(prev) : av_codec_is_decoder(prev)))
888             return prev;
889     }
890     return NULL;
891 }
892
893 static int compare_codec_desc(const void *a, const void *b)
894 {
895     const AVCodecDescriptor * const *da = a;
896     const AVCodecDescriptor * const *db = b;
897
898     return (*da)->type != (*db)->type ? (*da)->type - (*db)->type :
899            strcmp((*da)->name, (*db)->name);
900 }
901
902 static unsigned get_codecs_sorted(const AVCodecDescriptor ***rcodecs)
903 {
904     const AVCodecDescriptor *desc = NULL;
905     const AVCodecDescriptor **codecs;
906     unsigned nb_codecs = 0, i = 0;
907
908     while ((desc = avcodec_descriptor_next(desc)))
909         nb_codecs++;
910     if (!(codecs = av_calloc(nb_codecs, sizeof(*codecs)))) {
911         av_log(0, AV_LOG_ERROR, "Out of memory\n");
912         exit(1);
913     }
914     desc = NULL;
915     while ((desc = avcodec_descriptor_next(desc)))
916         codecs[i++] = desc;
917     av_assert0(i == nb_codecs);
918     qsort(codecs, nb_codecs, sizeof(*codecs), compare_codec_desc);
919     *rcodecs = codecs;
920     return nb_codecs;
921 }
922
923 static void print_codecs_for_id(enum AVCodecID id, int encoder)
924 {
925     const AVCodec *codec = NULL;
926
927     printf(" (%s: ", encoder ? "encoders" : "decoders");
928
929     while ((codec = next_codec_for_id(id, codec, encoder)))
930         printf("%s ", codec->name);
931
932     printf(")");
933 }
934
935 int show_codecs(void *optctx, const char *opt, const char *arg)
936 {
937     const AVCodecDescriptor **codecs;
938     unsigned i, nb_codecs = get_codecs_sorted(&codecs);
939
940     printf("Codecs:\n"
941            " D..... = Decoding supported\n"
942            " .E.... = Encoding supported\n"
943            " ..V... = Video codec\n"
944            " ..A... = Audio codec\n"
945            " ..S... = Subtitle codec\n"
946            " ...I.. = Intra frame-only codec\n"
947            " ....L. = Lossy compression\n"
948            " .....S = Lossless compression\n"
949            " -------\n");
950     for (i = 0; i < nb_codecs; i++) {
951         const AVCodecDescriptor *desc = codecs[i];
952         const AVCodec *codec = NULL;
953
954         printf(" ");
955         printf(avcodec_find_decoder(desc->id) ? "D" : ".");
956         printf(avcodec_find_encoder(desc->id) ? "E" : ".");
957
958         printf("%c", get_media_type_char(desc->type));
959         printf((desc->props & AV_CODEC_PROP_INTRA_ONLY) ? "I" : ".");
960         printf((desc->props & AV_CODEC_PROP_LOSSY)      ? "L" : ".");
961         printf((desc->props & AV_CODEC_PROP_LOSSLESS)   ? "S" : ".");
962
963         printf(" %-20s %s", desc->name, desc->long_name ? desc->long_name : "");
964
965         /* print decoders/encoders when there's more than one or their
966          * names are different from codec name */
967         while ((codec = next_codec_for_id(desc->id, codec, 0))) {
968             if (strcmp(codec->name, desc->name)) {
969                 print_codecs_for_id(desc->id, 0);
970                 break;
971             }
972         }
973         codec = NULL;
974         while ((codec = next_codec_for_id(desc->id, codec, 1))) {
975             if (strcmp(codec->name, desc->name)) {
976                 print_codecs_for_id(desc->id, 1);
977                 break;
978             }
979         }
980
981         printf("\n");
982     }
983     av_free(codecs);
984     return 0;
985 }
986
987 static void print_codecs(int encoder)
988 {
989     const AVCodecDescriptor **codecs;
990     unsigned i, nb_codecs = get_codecs_sorted(&codecs);
991
992     printf("%s:\n"
993            " V..... = Video\n"
994            " A..... = Audio\n"
995            " S..... = Subtitle\n"
996            " .F.... = Frame-level multithreading\n"
997            " ..S... = Slice-level multithreading\n"
998            " ...X.. = Codec is experimental\n"
999            " ....B. = Supports draw_horiz_band\n"
1000            " .....D = Supports direct rendering method 1\n"
1001            " ------\n",
1002            encoder ? "Encoders" : "Decoders");
1003     for (i = 0; i < nb_codecs; i++) {
1004         const AVCodecDescriptor *desc = codecs[i];
1005         const AVCodec *codec = NULL;
1006
1007         while ((codec = next_codec_for_id(desc->id, codec, encoder))) {
1008             printf(" %c", get_media_type_char(desc->type));
1009             printf((codec->capabilities & CODEC_CAP_FRAME_THREADS) ? "F" : ".");
1010             printf((codec->capabilities & CODEC_CAP_SLICE_THREADS) ? "S" : ".");
1011             printf((codec->capabilities & CODEC_CAP_EXPERIMENTAL)  ? "X" : ".");
1012             printf((codec->capabilities & CODEC_CAP_DRAW_HORIZ_BAND)?"B" : ".");
1013             printf((codec->capabilities & CODEC_CAP_DR1)           ? "D" : ".");
1014
1015             printf(" %-20s %s", codec->name, codec->long_name ? codec->long_name : "");
1016             if (strcmp(codec->name, desc->name))
1017                 printf(" (codec %s)", desc->name);
1018
1019             printf("\n");
1020         }
1021     }
1022     av_free(codecs);
1023 }
1024
1025 int show_decoders(void *optctx, const char *opt, const char *arg)
1026 {
1027     print_codecs(0);
1028     return 0;
1029 }
1030
1031 int show_encoders(void *optctx, const char *opt, const char *arg)
1032 {
1033     print_codecs(1);
1034     return 0;
1035 }
1036
1037 int show_bsfs(void *optctx, const char *opt, const char *arg)
1038 {
1039     AVBitStreamFilter *bsf = NULL;
1040
1041     printf("Bitstream filters:\n");
1042     while ((bsf = av_bitstream_filter_next(bsf)))
1043         printf("%s\n", bsf->name);
1044     printf("\n");
1045     return 0;
1046 }
1047
1048 int show_protocols(void *optctx, const char *opt, const char *arg)
1049 {
1050     void *opaque = NULL;
1051     const char *name;
1052
1053     printf("Supported file protocols:\n"
1054            "Input:\n");
1055     while ((name = avio_enum_protocols(&opaque, 0)))
1056         printf("%s\n", name);
1057     printf("Output:\n");
1058     while ((name = avio_enum_protocols(&opaque, 1)))
1059         printf("%s\n", name);
1060     return 0;
1061 }
1062
1063 int show_filters(void *optctx, const char *opt, const char *arg)
1064 {
1065     AVFilter av_unused(**filter) = NULL;
1066     char descr[64], *descr_cur;
1067     int i, j;
1068     const AVFilterPad *pad;
1069
1070     printf("Filters:\n");
1071 #if CONFIG_AVFILTER
1072     while ((filter = av_filter_next(filter)) && *filter) {
1073         descr_cur = descr;
1074         for (i = 0; i < 2; i++) {
1075             if (i) {
1076                 *(descr_cur++) = '-';
1077                 *(descr_cur++) = '>';
1078             }
1079             pad = i ? (*filter)->outputs : (*filter)->inputs;
1080             for (j = 0; pad && pad[j].name; j++) {
1081                 if (descr_cur >= descr + sizeof(descr) - 4)
1082                     break;
1083                 *(descr_cur++) = get_media_type_char(pad[j].type);
1084             }
1085             if (!j)
1086                 *(descr_cur++) = '|';
1087         }
1088         *descr_cur = 0;
1089         printf("%-16s %-10s %s\n", (*filter)->name, descr, (*filter)->description);
1090     }
1091 #endif
1092     return 0;
1093 }
1094
1095 int show_pix_fmts(void *optctx, const char *opt, const char *arg)
1096 {
1097     enum PixelFormat pix_fmt;
1098
1099     printf("Pixel formats:\n"
1100            "I.... = Supported Input  format for conversion\n"
1101            ".O... = Supported Output format for conversion\n"
1102            "..H.. = Hardware accelerated format\n"
1103            "...P. = Paletted format\n"
1104            "....B = Bitstream format\n"
1105            "FLAGS NAME            NB_COMPONENTS BITS_PER_PIXEL\n"
1106            "-----\n");
1107
1108 #if !CONFIG_SWSCALE
1109 #   define sws_isSupportedInput(x)  0
1110 #   define sws_isSupportedOutput(x) 0
1111 #endif
1112
1113     for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++) {
1114         const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[pix_fmt];
1115         if(!pix_desc->name)
1116             continue;
1117         printf("%c%c%c%c%c %-16s       %d            %2d\n",
1118                sws_isSupportedInput (pix_fmt)      ? 'I' : '.',
1119                sws_isSupportedOutput(pix_fmt)      ? 'O' : '.',
1120                pix_desc->flags & PIX_FMT_HWACCEL   ? 'H' : '.',
1121                pix_desc->flags & PIX_FMT_PAL       ? 'P' : '.',
1122                pix_desc->flags & PIX_FMT_BITSTREAM ? 'B' : '.',
1123                pix_desc->name,
1124                pix_desc->nb_components,
1125                av_get_bits_per_pixel(pix_desc));
1126     }
1127     return 0;
1128 }
1129
1130 int show_layouts(void *optctx, const char *opt, const char *arg)
1131 {
1132     int i = 0;
1133     uint64_t layout, j;
1134     const char *name, *descr;
1135
1136     printf("Individual channels:\n"
1137            "NAME        DESCRIPTION\n");
1138     for (i = 0; i < 63; i++) {
1139         name = av_get_channel_name((uint64_t)1 << i);
1140         if (!name)
1141             continue;
1142         descr = av_get_channel_description((uint64_t)1 << i);
1143         printf("%-12s%s\n", name, descr);
1144     }
1145     printf("\nStandard channel layouts:\n"
1146            "NAME        DECOMPOSITION\n");
1147     for (i = 0; !av_get_standard_channel_layout(i, &layout, &name); i++) {
1148         if (name) {
1149             printf("%-12s", name);
1150             for (j = 1; j; j <<= 1)
1151                 if ((layout & j))
1152                     printf("%s%s", (layout & (j - 1)) ? "+" : "", av_get_channel_name(j));
1153             printf("\n");
1154         }
1155     }
1156     return 0;
1157 }
1158
1159 int show_sample_fmts(void *optctx, const char *opt, const char *arg)
1160 {
1161     int i;
1162     char fmt_str[128];
1163     for (i = -1; i < AV_SAMPLE_FMT_NB; i++)
1164         printf("%s\n", av_get_sample_fmt_string(fmt_str, sizeof(fmt_str), i));
1165     return 0;
1166 }
1167
1168 static void show_help_codec(const char *name, int encoder)
1169 {
1170     const AVCodecDescriptor *desc;
1171     const AVCodec *codec;
1172
1173     if (!name) {
1174         av_log(NULL, AV_LOG_ERROR, "No codec name specified.\n");
1175         return;
1176     }
1177
1178     codec = encoder ? avcodec_find_encoder_by_name(name) :
1179                       avcodec_find_decoder_by_name(name);
1180
1181     if (codec)
1182         print_codec(codec);
1183     else if ((desc = avcodec_descriptor_get_by_name(name))) {
1184         int printed = 0;
1185
1186         while ((codec = next_codec_for_id(desc->id, codec, encoder))) {
1187             printed = 1;
1188             print_codec(codec);
1189         }
1190
1191         if (!printed) {
1192             av_log(NULL, AV_LOG_ERROR, "Codec '%s' is known to FFmpeg, "
1193                    "but no %s for it are available. FFmpeg might need to be "
1194                    "recompiled with additional external libraries.\n",
1195                    name, encoder ? "encoders" : "decoders");
1196         }
1197     } else {
1198         av_log(NULL, AV_LOG_ERROR, "Codec '%s' is not recognized by FFmpeg.\n",
1199                name);
1200     }
1201 }
1202
1203 static void show_help_demuxer(const char *name)
1204 {
1205     const AVInputFormat *fmt = av_find_input_format(name);
1206
1207     if (!fmt) {
1208         av_log(NULL, AV_LOG_ERROR, "Unknown format '%s'.\n", name);
1209         return;
1210     }
1211
1212     printf("Demuxer %s [%s]:\n", fmt->name, fmt->long_name);
1213
1214     if (fmt->extensions)
1215         printf("    Common extensions: %s.\n", fmt->extensions);
1216
1217     if (fmt->priv_class)
1218         show_help_children(fmt->priv_class, AV_OPT_FLAG_DECODING_PARAM);
1219 }
1220
1221 static void show_help_muxer(const char *name)
1222 {
1223     const AVCodecDescriptor *desc;
1224     const AVOutputFormat *fmt = av_guess_format(name, NULL, NULL);
1225
1226     if (!fmt) {
1227         av_log(NULL, AV_LOG_ERROR, "Unknown format '%s'.\n", name);
1228         return;
1229     }
1230
1231     printf("Muxer %s [%s]:\n", fmt->name, fmt->long_name);
1232
1233     if (fmt->extensions)
1234         printf("    Common extensions: %s.\n", fmt->extensions);
1235     if (fmt->mime_type)
1236         printf("    Mime type: %s.\n", fmt->mime_type);
1237     if (fmt->video_codec != AV_CODEC_ID_NONE &&
1238         (desc = avcodec_descriptor_get(fmt->video_codec))) {
1239         printf("    Default video codec: %s.\n", desc->name);
1240     }
1241     if (fmt->audio_codec != AV_CODEC_ID_NONE &&
1242         (desc = avcodec_descriptor_get(fmt->audio_codec))) {
1243         printf("    Default audio codec: %s.\n", desc->name);
1244     }
1245     if (fmt->subtitle_codec != AV_CODEC_ID_NONE &&
1246         (desc = avcodec_descriptor_get(fmt->subtitle_codec))) {
1247         printf("    Default subtitle codec: %s.\n", desc->name);
1248     }
1249
1250     if (fmt->priv_class)
1251         show_help_children(fmt->priv_class, AV_OPT_FLAG_ENCODING_PARAM);
1252 }
1253
1254 int show_help(void *optctx, const char *opt, const char *arg)
1255 {
1256     char *topic, *par;
1257     av_log_set_callback(log_callback_help);
1258
1259     topic = av_strdup(arg ? arg : "");
1260     par = strchr(topic, '=');
1261     if (par)
1262         *par++ = 0;
1263
1264     if (!*topic) {
1265         show_help_default(topic, par);
1266     } else if (!strcmp(topic, "decoder")) {
1267         show_help_codec(par, 0);
1268     } else if (!strcmp(topic, "encoder")) {
1269         show_help_codec(par, 1);
1270     } else if (!strcmp(topic, "demuxer")) {
1271         show_help_demuxer(par);
1272     } else if (!strcmp(topic, "muxer")) {
1273         show_help_muxer(par);
1274     } else {
1275         show_help_default(topic, par);
1276     }
1277
1278     av_freep(&topic);
1279     return 0;
1280 }
1281
1282 int read_yesno(void)
1283 {
1284     int c = getchar();
1285     int yesno = (toupper(c) == 'Y');
1286
1287     while (c != '\n' && c != EOF)
1288         c = getchar();
1289
1290     return yesno;
1291 }
1292
1293 int cmdutils_read_file(const char *filename, char **bufptr, size_t *size)
1294 {
1295     int ret;
1296     FILE *f = fopen(filename, "rb");
1297
1298     if (!f) {
1299         av_log(NULL, AV_LOG_ERROR, "Cannot read file '%s': %s\n", filename,
1300                strerror(errno));
1301         return AVERROR(errno);
1302     }
1303     fseek(f, 0, SEEK_END);
1304     *size = ftell(f);
1305     fseek(f, 0, SEEK_SET);
1306     *bufptr = av_malloc(*size + 1);
1307     if (!*bufptr) {
1308         av_log(NULL, AV_LOG_ERROR, "Could not allocate file buffer\n");
1309         fclose(f);
1310         return AVERROR(ENOMEM);
1311     }
1312     ret = fread(*bufptr, 1, *size, f);
1313     if (ret < *size) {
1314         av_free(*bufptr);
1315         if (ferror(f)) {
1316             av_log(NULL, AV_LOG_ERROR, "Error while reading file '%s': %s\n",
1317                    filename, strerror(errno));
1318             ret = AVERROR(errno);
1319         } else
1320             ret = AVERROR_EOF;
1321     } else {
1322         ret = 0;
1323         (*bufptr)[*size++] = '\0';
1324     }
1325
1326     fclose(f);
1327     return ret;
1328 }
1329
1330 FILE *get_preset_file(char *filename, size_t filename_size,
1331                       const char *preset_name, int is_path,
1332                       const char *codec_name)
1333 {
1334     FILE *f = NULL;
1335     int i;
1336     const char *base[3] = { getenv("FFMPEG_DATADIR"),
1337                             getenv("HOME"),
1338                             FFMPEG_DATADIR, };
1339
1340     if (is_path) {
1341         av_strlcpy(filename, preset_name, filename_size);
1342         f = fopen(filename, "r");
1343     } else {
1344 #ifdef _WIN32
1345         char datadir[MAX_PATH], *ls;
1346         base[2] = NULL;
1347
1348         if (GetModuleFileNameA(GetModuleHandleA(NULL), datadir, sizeof(datadir) - 1))
1349         {
1350             for (ls = datadir; ls < datadir + strlen(datadir); ls++)
1351                 if (*ls == '\\') *ls = '/';
1352
1353             if (ls = strrchr(datadir, '/'))
1354             {
1355                 *ls = 0;
1356                 strncat(datadir, "/ffpresets",  sizeof(datadir) - 1 - strlen(datadir));
1357                 base[2] = datadir;
1358             }
1359         }
1360 #endif
1361         for (i = 0; i < 3 && !f; i++) {
1362             if (!base[i])
1363                 continue;
1364             snprintf(filename, filename_size, "%s%s/%s.ffpreset", base[i],
1365                      i != 1 ? "" : "/.ffmpeg", preset_name);
1366             f = fopen(filename, "r");
1367             if (!f && codec_name) {
1368                 snprintf(filename, filename_size,
1369                          "%s%s/%s-%s.ffpreset",
1370                          base[i], i != 1 ? "" : "/.ffmpeg", codec_name,
1371                          preset_name);
1372                 f = fopen(filename, "r");
1373             }
1374         }
1375     }
1376
1377     return f;
1378 }
1379
1380 int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
1381 {
1382     int ret = avformat_match_stream_specifier(s, st, spec);
1383     if (ret < 0)
1384         av_log(s, AV_LOG_ERROR, "Invalid stream specifier: %s.\n", spec);
1385     return ret;
1386 }
1387
1388 AVDictionary *filter_codec_opts(AVDictionary *opts, enum AVCodecID codec_id,
1389                                 AVFormatContext *s, AVStream *st, AVCodec *codec)
1390 {
1391     AVDictionary    *ret = NULL;
1392     AVDictionaryEntry *t = NULL;
1393     int            flags = s->oformat ? AV_OPT_FLAG_ENCODING_PARAM
1394                                       : AV_OPT_FLAG_DECODING_PARAM;
1395     char          prefix = 0;
1396     const AVClass    *cc = avcodec_get_class();
1397
1398     if (!codec)
1399         codec            = s->oformat ? avcodec_find_encoder(codec_id)
1400                                       : avcodec_find_decoder(codec_id);
1401     if (!codec)
1402         return NULL;
1403
1404     switch (codec->type) {
1405     case AVMEDIA_TYPE_VIDEO:
1406         prefix  = 'v';
1407         flags  |= AV_OPT_FLAG_VIDEO_PARAM;
1408         break;
1409     case AVMEDIA_TYPE_AUDIO:
1410         prefix  = 'a';
1411         flags  |= AV_OPT_FLAG_AUDIO_PARAM;
1412         break;
1413     case AVMEDIA_TYPE_SUBTITLE:
1414         prefix  = 's';
1415         flags  |= AV_OPT_FLAG_SUBTITLE_PARAM;
1416         break;
1417     }
1418
1419     while (t = av_dict_get(opts, "", t, AV_DICT_IGNORE_SUFFIX)) {
1420         char *p = strchr(t->key, ':');
1421
1422         /* check stream specification in opt name */
1423         if (p)
1424             switch (check_stream_specifier(s, st, p + 1)) {
1425             case  1: *p = 0; break;
1426             case  0:         continue;
1427             default:         return NULL;
1428             }
1429
1430         if (av_opt_find(&cc, t->key, NULL, flags, AV_OPT_SEARCH_FAKE_OBJ) ||
1431             (codec && codec->priv_class &&
1432              av_opt_find(&codec->priv_class, t->key, NULL, flags,
1433                          AV_OPT_SEARCH_FAKE_OBJ)))
1434             av_dict_set(&ret, t->key, t->value, 0);
1435         else if (t->key[0] == prefix &&
1436                  av_opt_find(&cc, t->key + 1, NULL, flags,
1437                              AV_OPT_SEARCH_FAKE_OBJ))
1438             av_dict_set(&ret, t->key + 1, t->value, 0);
1439
1440         if (p)
1441             *p = ':';
1442     }
1443     return ret;
1444 }
1445
1446 AVDictionary **setup_find_stream_info_opts(AVFormatContext *s,
1447                                            AVDictionary *codec_opts)
1448 {
1449     int i;
1450     AVDictionary **opts;
1451
1452     if (!s->nb_streams)
1453         return NULL;
1454     opts = av_mallocz(s->nb_streams * sizeof(*opts));
1455     if (!opts) {
1456         av_log(NULL, AV_LOG_ERROR,
1457                "Could not alloc memory for stream options.\n");
1458         return NULL;
1459     }
1460     for (i = 0; i < s->nb_streams; i++)
1461         opts[i] = filter_codec_opts(codec_opts, s->streams[i]->codec->codec_id,
1462                                     s, s->streams[i], NULL);
1463     return opts;
1464 }
1465
1466 void *grow_array(void *array, int elem_size, int *size, int new_size)
1467 {
1468     if (new_size >= INT_MAX / elem_size) {
1469         av_log(NULL, AV_LOG_ERROR, "Array too big.\n");
1470         exit(1);
1471     }
1472     if (*size < new_size) {
1473         uint8_t *tmp = av_realloc(array, new_size*elem_size);
1474         if (!tmp) {
1475             av_log(NULL, AV_LOG_ERROR, "Could not alloc buffer.\n");
1476             exit(1);
1477         }
1478         memset(tmp + *size*elem_size, 0, (new_size-*size) * elem_size);
1479         *size = new_size;
1480         return tmp;
1481     }
1482     return array;
1483 }
1484
1485 static int alloc_buffer(FrameBuffer **pool, AVCodecContext *s, FrameBuffer **pbuf)
1486 {
1487     FrameBuffer  *buf = av_mallocz(sizeof(*buf));
1488     int i, ret;
1489     const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
1490     int h_chroma_shift, v_chroma_shift;
1491     int edge = 32; // XXX should be avcodec_get_edge_width(), but that fails on svq1
1492     int w = s->width, h = s->height;
1493
1494     if (!buf)
1495         return AVERROR(ENOMEM);
1496
1497     avcodec_align_dimensions(s, &w, &h);
1498
1499     if (!(s->flags & CODEC_FLAG_EMU_EDGE)) {
1500         w += 2*edge;
1501         h += 2*edge;
1502     }
1503
1504     if ((ret = av_image_alloc(buf->base, buf->linesize, w, h,
1505                               s->pix_fmt, 32)) < 0) {
1506         av_freep(&buf);
1507         av_log(s, AV_LOG_ERROR, "alloc_buffer: av_image_alloc() failed\n");
1508         return ret;
1509     }
1510     /* XXX this shouldn't be needed, but some tests break without this line
1511      * those decoders are buggy and need to be fixed.
1512      * the following tests fail:
1513      * cdgraphics, ansi, aasc, fraps-v1, qtrle-1bit
1514      */
1515     memset(buf->base[0], 128, ret);
1516
1517     avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
1518     for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
1519         const int h_shift = i==0 ? 0 : h_chroma_shift;
1520         const int v_shift = i==0 ? 0 : v_chroma_shift;
1521         if ((s->flags & CODEC_FLAG_EMU_EDGE) || !buf->linesize[i] || !buf->base[i])
1522             buf->data[i] = buf->base[i];
1523         else
1524             buf->data[i] = buf->base[i] +
1525                            FFALIGN((buf->linesize[i]*edge >> v_shift) +
1526                                    (pixel_size*edge >> h_shift), 32);
1527     }
1528     buf->w       = s->width;
1529     buf->h       = s->height;
1530     buf->pix_fmt = s->pix_fmt;
1531     buf->pool    = pool;
1532
1533     *pbuf = buf;
1534     return 0;
1535 }
1536
1537 int codec_get_buffer(AVCodecContext *s, AVFrame *frame)
1538 {
1539     FrameBuffer **pool = s->opaque;
1540     FrameBuffer *buf;
1541     int ret, i;
1542
1543     if(av_image_check_size(s->width, s->height, 0, s) || s->pix_fmt<0) {
1544         av_log(s, AV_LOG_ERROR, "codec_get_buffer: image parameters invalid\n");
1545         return -1;
1546     }
1547
1548     if (!*pool && (ret = alloc_buffer(pool, s, pool)) < 0)
1549         return ret;
1550
1551     buf              = *pool;
1552     *pool            = buf->next;
1553     buf->next        = NULL;
1554     if (buf->w != s->width || buf->h != s->height || buf->pix_fmt != s->pix_fmt) {
1555         av_freep(&buf->base[0]);
1556         av_free(buf);
1557         if ((ret = alloc_buffer(pool, s, &buf)) < 0)
1558             return ret;
1559     }
1560     av_assert0(!buf->refcount);
1561     buf->refcount++;
1562
1563     frame->opaque        = buf;
1564     frame->type          = FF_BUFFER_TYPE_USER;
1565     frame->extended_data = frame->data;
1566     frame->pkt_pts       = s->pkt ? s->pkt->pts : AV_NOPTS_VALUE;
1567     frame->width         = buf->w;
1568     frame->height        = buf->h;
1569     frame->format        = buf->pix_fmt;
1570     frame->sample_aspect_ratio = s->sample_aspect_ratio;
1571
1572     for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
1573         frame->base[i]     = buf->base[i];  // XXX h264.c uses base though it shouldn't
1574         frame->data[i]     = buf->data[i];
1575         frame->linesize[i] = buf->linesize[i];
1576     }
1577
1578     return 0;
1579 }
1580
1581 static void unref_buffer(FrameBuffer *buf)
1582 {
1583     FrameBuffer **pool = buf->pool;
1584
1585     av_assert0(buf->refcount > 0);
1586     buf->refcount--;
1587     if (!buf->refcount) {
1588         FrameBuffer *tmp;
1589         for(tmp= *pool; tmp; tmp= tmp->next)
1590             av_assert1(tmp != buf);
1591
1592         buf->next = *pool;
1593         *pool = buf;
1594     }
1595 }
1596
1597 void codec_release_buffer(AVCodecContext *s, AVFrame *frame)
1598 {
1599     FrameBuffer *buf = frame->opaque;
1600     int i;
1601
1602     if(frame->type!=FF_BUFFER_TYPE_USER) {
1603         avcodec_default_release_buffer(s, frame);
1604         return;
1605     }
1606
1607     for (i = 0; i < FF_ARRAY_ELEMS(frame->data); i++)
1608         frame->data[i] = NULL;
1609
1610     unref_buffer(buf);
1611 }
1612
1613 void filter_release_buffer(AVFilterBuffer *fb)
1614 {
1615     FrameBuffer *buf = fb->priv;
1616     av_free(fb);
1617     unref_buffer(buf);
1618 }
1619
1620 void free_buffer_pool(FrameBuffer **pool)
1621 {
1622     FrameBuffer *buf = *pool;
1623     while (buf) {
1624         *pool = buf->next;
1625         av_freep(&buf->base[0]);
1626         av_free(buf);
1627         buf = *pool;
1628     }
1629 }