Browse Source

ff*: add -max_alloc command line option

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.10
Michael Niedermayer 14 years ago
parent
commit
c48f67f06e
3 changed files with 17 additions and 0 deletions
  1. +14
    -0
      cmdutils.c
  2. +2
    -0
      cmdutils.h
  3. +1
    -0
      cmdutils_common_opts.h

+ 14
- 0
cmdutils.c View File

@@ -510,6 +510,20 @@ int opt_report(const char *opt)
return 0;
}

int opt_max_alloc(const char *opt, const char *arg)
{
char *tail;
size_t max;

max = strtol(arg, &tail, 10);
if (*tail) {
av_log(NULL, AV_LOG_FATAL, "Invalid max_alloc \"%s\".\n", arg);
exit_program(1);
}
av_max_alloc(max);
return 0;
}

int opt_codec_debug(const char *opt, const char *arg)
{
av_log_set_level(AV_LOG_DEBUG);


+ 2
- 0
cmdutils.h View File

@@ -78,6 +78,8 @@ int opt_loglevel(const char *opt, const char *arg);

int opt_report(const char *opt);

int opt_max_alloc(const char *opt, const char *arg);

int opt_codec_debug(const char *opt, const char *arg);

/**


+ 1
- 0
cmdutils_common_opts.h View File

@@ -15,3 +15,4 @@
{ "v", HAS_ARG, {(void*)opt_loglevel}, "set libav* logging level", "loglevel" },
{ "debug", HAS_ARG, {(void*)opt_codec_debug}, "set debug flags", "flags" },
{ "report", 0, {(void*)opt_report}, "generate a report" },
{ "max_alloc", HAS_ARG, {(void*)opt_max_alloc}, "set maximum size of a single allocated block", "bytes" },

Loading…
Cancel
Save