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
0b70ffa4
Commit
0b70ffa4
authored
Nov 28, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/sendcmd: add FLAGS to AVOption array.
parent
a5b76523
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
f_sendcmd.c
libavfilter/f_sendcmd.c
+6
-6
No files found.
libavfilter/f_sendcmd.c
View file @
0b70ffa4
...
...
@@ -80,12 +80,12 @@ typedef struct {
}
SendCmdContext
;
#define OFFSET(x) offsetof(SendCmdContext, x)
static
const
AVOption
sendcmd_options
[]
=
{
{
"commands"
,
"set commands"
,
OFFSET
(
commands_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
},
{
"c"
,
"set commands"
,
OFFSET
(
commands_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
},
{
"filename"
,
"set commands file"
,
OFFSET
(
commands_filename
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
},
{
"f"
,
"set commands file"
,
OFFSET
(
commands_filename
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
},
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
options
[]
=
{
{
"commands"
,
"set commands"
,
OFFSET
(
commands_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
FLAGS
},
{
"c"
,
"set commands"
,
OFFSET
(
commands_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
FLAGS
},
{
"filename"
,
"set commands file"
,
OFFSET
(
commands_filename
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
FLAGS
},
{
"f"
,
"set commands file"
,
OFFSET
(
commands_filename
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
FLAGS
},
{
NULL
},
};
...
...
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