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
4a889892
Commit
4a889892
authored
Apr 12, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buffersink: remove shorthand
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f1e62af0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
buffersink.c
libavfilter/buffersink.c
+0
-5
No files found.
libavfilter/buffersink.c
View file @
4a889892
...
...
@@ -504,7 +504,6 @@ static const AVOption abuffersink_options[] = {
{
NULL
},
};
#undef FLAGS
static
const
char
*
const
shorthand
[]
=
{
NULL
};
AVFILTER_DEFINE_CLASS
(
buffersink
);
AVFILTER_DEFINE_CLASS
(
abuffersink
);
...
...
@@ -530,7 +529,6 @@ AVFilter avfilter_vsink_ffbuffersink = {
.
description
=
NULL_IF_CONFIG_SMALL
(
"Buffer video frames, and make them available to the end of the filter graph."
),
.
priv_size
=
sizeof
(
BufferSinkContext
),
.
priv_class
=
&
ffbuffersink_class
,
.
shorthand
=
shorthand
,
.
init_opaque
=
vsink_init
,
.
uninit
=
uninit
,
...
...
@@ -555,7 +553,6 @@ AVFilter avfilter_asink_ffabuffersink = {
.
uninit
=
uninit
,
.
priv_size
=
sizeof
(
BufferSinkContext
),
.
priv_class
=
&
ffabuffersink_class
,
.
shorthand
=
shorthand
,
.
query_formats
=
asink_query_formats
,
.
inputs
=
ffabuffersink_inputs
,
.
outputs
=
NULL
,
...
...
@@ -576,7 +573,6 @@ AVFilter avfilter_vsink_buffer = {
.
description
=
NULL_IF_CONFIG_SMALL
(
"Buffer video frames, and make them available to the end of the filter graph."
),
.
priv_size
=
sizeof
(
BufferSinkContext
),
.
priv_class
=
&
buffersink_class
,
.
shorthand
=
shorthand
,
.
init_opaque
=
vsink_init
,
.
uninit
=
uninit
,
...
...
@@ -598,7 +594,6 @@ AVFilter avfilter_asink_abuffer = {
.
name
=
"abuffersink"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Buffer audio frames, and make them available to the end of the filter graph."
),
.
priv_class
=
&
abuffersink_class
,
.
shorthand
=
shorthand
,
.
priv_size
=
sizeof
(
BufferSinkContext
),
.
init_opaque
=
asink_init
,
.
uninit
=
uninit
,
...
...
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