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
16e5e13c
Commit
16e5e13c
authored
Apr 12, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buffersrc: switch to an AVOptions-based shorthand system.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
8f3c440a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
avfilter.c
libavfilter/avfilter.c
+0
-1
buffersrc.c
libavfilter/buffersrc.c
+1
-5
No files found.
libavfilter/avfilter.c
View file @
16e5e13c
...
...
@@ -687,7 +687,6 @@ static const char *const filters_left_to_update[] = {
#if FF_API_ACONVERT_FILTER
"aconvert"
,
#endif
"buffer"
,
"pan"
,
};
...
...
libavfilter/buffersrc.c
View file @
16e5e13c
...
...
@@ -320,8 +320,8 @@ unsigned av_buffersrc_get_nb_failed_requests(AVFilterContext *buffer_src)
static
const
AVOption
buffer_options
[]
=
{
{
"width"
,
NULL
,
OFFSET
(
w
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
V
},
{
"height"
,
NULL
,
OFFSET
(
h
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
V
},
{
"video_size"
,
NULL
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
.
flags
=
V
},
{
"height"
,
NULL
,
OFFSET
(
h
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
V
},
{
"pix_fmt"
,
NULL
,
OFFSET
(
pix_fmt
),
AV_OPT_TYPE_PIXEL_FMT
,
.
flags
=
V
},
#if FF_API_OLD_FILTER_OPTS
/* those 4 are for compatibility with the old option passing system where each filter
...
...
@@ -507,9 +507,6 @@ static const AVFilterPad avfilter_vsrc_buffer_outputs[] = {
{
NULL
}
};
static
const
char
*
const
buffer_shorthand
[]
=
{
"width"
,
"height"
,
"pix_fmt"
,
"time_base_num"
,
"time_base_den"
,
"sar_num"
,
"sar_den"
,
NULL
};
AVFilter
avfilter_vsrc_buffer
=
{
.
name
=
"buffer"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Buffer video frames, and make them accessible to the filterchain."
),
...
...
@@ -522,7 +519,6 @@ AVFilter avfilter_vsrc_buffer = {
.
inputs
=
NULL
,
.
outputs
=
avfilter_vsrc_buffer_outputs
,
.
priv_class
=
&
buffer_class
,
.
shorthand
=
buffer_shorthand
,
};
static
const
AVFilterPad
avfilter_asrc_abuffer_outputs
[]
=
{
...
...
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