Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b288f674
Commit
b288f674
authored
Jan 31, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/avfilter: Remove CONFIG_MP_FILTER case
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a34f4e2f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
avfilter.c
libavfilter/avfilter.c
+0
-15
No files found.
libavfilter/avfilter.c
View file @
b288f674
...
...
@@ -965,21 +965,6 @@ int avfilter_init_str(AVFilterContext *filter, const char *args)
goto
fail
;
#endif
}
else
{
#if CONFIG_MP_FILTER
if
(
!
strcmp
(
filter
->
filter
->
name
,
"mp"
))
{
char
*
escaped
;
if
(
!
strncmp
(
args
,
"filter="
,
7
))
args
+=
7
;
ret
=
av_escape
(
&
escaped
,
args
,
":="
,
AV_ESCAPE_MODE_BACKSLASH
,
0
);
if
(
ret
<
0
)
{
av_log
(
filter
,
AV_LOG_ERROR
,
"Unable to escape MPlayer filters arg '%s'
\n
"
,
args
);
goto
fail
;
}
ret
=
process_options
(
filter
,
&
options
,
escaped
);
av_free
(
escaped
);
}
else
#endif
ret
=
process_options
(
filter
,
&
options
,
args
);
if
(
ret
<
0
)
goto
fail
;
...
...
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