Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
3dedcef8
Commit
3dedcef8
authored
Apr 12, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add missing AV_OPT_FLAG_FILTERING_PARAM
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
1007de70
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
f_setpts.c
libavfilter/f_setpts.c
+1
-1
vf_frei0r.c
libavfilter/vf_frei0r.c
+1
-1
vf_hqdn3d.c
libavfilter/vf_hqdn3d.c
+1
-1
vf_libopencv.c
libavfilter/vf_libopencv.c
+1
-1
No files found.
libavfilter/f_setpts.c
View file @
3dedcef8
...
@@ -257,7 +257,7 @@ AVFilter avfilter_af_asetpts = {
...
@@ -257,7 +257,7 @@ AVFilter avfilter_af_asetpts = {
#if CONFIG_SETPTS_FILTER
#if CONFIG_SETPTS_FILTER
#define OFFSET(x) offsetof(SetPTSContext, x)
#define OFFSET(x) offsetof(SetPTSContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
| AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
{
"expr"
,
"Expression determining the frame timestamp"
,
OFFSET
(
expr_str
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"PTS"
},
.
flags
=
FLAGS
},
{
"expr"
,
"Expression determining the frame timestamp"
,
OFFSET
(
expr_str
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"PTS"
},
.
flags
=
FLAGS
},
{
NULL
},
{
NULL
},
...
...
libavfilter/vf_frei0r.c
View file @
3dedcef8
...
@@ -406,7 +406,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
...
@@ -406,7 +406,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
#define OFFSET(x) offsetof(Frei0rContext, x)
#define OFFSET(x) offsetof(Frei0rContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
| AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
filter_options
[]
=
{
static
const
AVOption
filter_options
[]
=
{
{
"filter_name"
,
NULL
,
OFFSET
(
dl_name
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
{
"filter_name"
,
NULL
,
OFFSET
(
dl_name
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
{
"filter_params"
,
NULL
,
OFFSET
(
params
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
{
"filter_params"
,
NULL
,
OFFSET
(
params
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
...
...
libavfilter/vf_hqdn3d.c
View file @
3dedcef8
...
@@ -309,7 +309,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
...
@@ -309,7 +309,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
#define OFFSET(x) offsetof(HQDN3DContext, x)
#define OFFSET(x) offsetof(HQDN3DContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
| AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
{
"luma_spatial"
,
"spatial luma strength"
,
OFFSET
(
strength
[
LUMA_SPATIAL
]),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
.
0
},
0
,
DBL_MAX
,
FLAGS
},
{
"luma_spatial"
,
"spatial luma strength"
,
OFFSET
(
strength
[
LUMA_SPATIAL
]),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
.
0
},
0
,
DBL_MAX
,
FLAGS
},
{
"chroma_spatial"
,
"spatial chroma strength"
,
OFFSET
(
strength
[
CHROMA_SPATIAL
]),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
.
0
},
0
,
DBL_MAX
,
FLAGS
},
{
"chroma_spatial"
,
"spatial chroma strength"
,
OFFSET
(
strength
[
CHROMA_SPATIAL
]),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
.
0
},
0
,
DBL_MAX
,
FLAGS
},
...
...
libavfilter/vf_libopencv.c
View file @
3dedcef8
...
@@ -379,7 +379,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
...
@@ -379,7 +379,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
#define OFFSET(x) offsetof(OCVContext, x)
#define OFFSET(x) offsetof(OCVContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
| AV_OPT_FLAG_FILTERING_PARAM
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
{
"filter_name"
,
NULL
,
OFFSET
(
name
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
{
"filter_name"
,
NULL
,
OFFSET
(
name
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
{
"filter_params"
,
NULL
,
OFFSET
(
params
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
{
"filter_params"
,
NULL
,
OFFSET
(
params
),
AV_OPT_TYPE_STRING
,
.
flags
=
FLAGS
},
...
...
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