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
dcea5850
Commit
dcea5850
authored
Apr 12, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: drop now unused shorthand field from AVFilter.
parent
8f99494c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
10 deletions
+1
-10
avfilter.c
libavfilter/avfilter.c
+1
-1
avfilter.h
libavfilter/avfilter.h
+0
-9
No files found.
libavfilter/avfilter.c
View file @
dcea5850
...
...
@@ -606,7 +606,7 @@ void avfilter_free(AVFilterContext *filter)
avfilter_link_free
(
&
link
);
}
if
(
filter
->
filter
->
priv_class
||
filter
->
filter
->
shorthand
)
if
(
filter
->
filter
->
priv_class
)
av_opt_free
(
filter
->
priv
);
av_freep
(
&
filter
->
name
);
...
...
libavfilter/avfilter.h
View file @
dcea5850
...
...
@@ -518,15 +518,6 @@ typedef struct AVFilter {
* used for providing binary data.
*/
int
(
*
init_opaque
)(
AVFilterContext
*
ctx
,
void
*
opaque
);
/**
* Shorthand syntax for init arguments.
* If this field is set (even to an empty list), just before init the
* private class will be set and the arguments string will be parsed
* using av_opt_set_from_string() with "=" and ":" delimiters, and
* av_opt_free() will be called just after uninit.
*/
const
char
*
const
*
shorthand
;
}
AVFilter
;
/** An instance of a filter */
...
...
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