Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
c48f67f0
Commit
c48f67f0
authored
Dec 25, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ff*: add -max_alloc command line option
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
5a8e9942
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
cmdutils.c
cmdutils.c
+14
-0
cmdutils.h
cmdutils.h
+2
-0
cmdutils_common_opts.h
cmdutils_common_opts.h
+1
-0
No files found.
cmdutils.c
View file @
c48f67f0
...
@@ -510,6 +510,20 @@ int opt_report(const char *opt)
...
@@ -510,6 +510,20 @@ int opt_report(const char *opt)
return
0
;
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
)
int
opt_codec_debug
(
const
char
*
opt
,
const
char
*
arg
)
{
{
av_log_set_level
(
AV_LOG_DEBUG
);
av_log_set_level
(
AV_LOG_DEBUG
);
...
...
cmdutils.h
View file @
c48f67f0
...
@@ -78,6 +78,8 @@ int opt_loglevel(const char *opt, const char *arg);
...
@@ -78,6 +78,8 @@ int opt_loglevel(const char *opt, const char *arg);
int
opt_report
(
const
char
*
opt
);
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
);
int
opt_codec_debug
(
const
char
*
opt
,
const
char
*
arg
);
/**
/**
...
...
cmdutils_common_opts.h
View file @
c48f67f0
...
@@ -15,3 +15,4 @@
...
@@ -15,3 +15,4 @@
{
"v"
,
HAS_ARG
,
{(
void
*
)
opt_loglevel
},
"set libav* logging level"
,
"loglevel"
},
{
"v"
,
HAS_ARG
,
{(
void
*
)
opt_loglevel
},
"set libav* logging level"
,
"loglevel"
},
{
"debug"
,
HAS_ARG
,
{(
void
*
)
opt_codec_debug
},
"set debug flags"
,
"flags"
},
{
"debug"
,
HAS_ARG
,
{(
void
*
)
opt_codec_debug
},
"set debug flags"
,
"flags"
},
{
"report"
,
0
,
{(
void
*
)
opt_report
},
"generate a report"
},
{
"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"
},
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment