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
d52342a5
Commit
d52342a5
authored
Nov 16, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_framepack: add missing filtering flag
parent
ec3d8a0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
vf_framepack.c
libavfilter/vf_framepack.c
+7
-7
No files found.
libavfilter/vf_framepack.c
View file @
d52342a5
...
...
@@ -364,20 +364,20 @@ static int try_push_frame(AVFilterContext *ctx)
}
#define OFFSET(x) offsetof(FramepackContext, x)
#define V
AV_OPT_FLAG_VIDEO
_PARAM
#define V
F AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING
_PARAM
static
const
AVOption
framepack_options
[]
=
{
{
"format"
,
"Frame pack output format"
,
OFFSET
(
format
),
AV_OPT_TYPE_INT
,
{
.
i64
=
AV_STEREO3D_SIDEBYSIDE
},
0
,
INT_MAX
,
.
flags
=
V
,
.
unit
=
"format"
},
{
.
i64
=
AV_STEREO3D_SIDEBYSIDE
},
0
,
INT_MAX
,
.
flags
=
V
F
,
.
unit
=
"format"
},
{
"sbs"
,
"Views are packed next to each other"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
AV_STEREO3D_SIDEBYSIDE
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
,
.
unit
=
"format"
},
{
.
i64
=
AV_STEREO3D_SIDEBYSIDE
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
F
,
.
unit
=
"format"
},
{
"tab"
,
"Views are packed on top of each other"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
AV_STEREO3D_TOPBOTTOM
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
,
.
unit
=
"format"
},
{
.
i64
=
AV_STEREO3D_TOPBOTTOM
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
F
,
.
unit
=
"format"
},
{
"frameseq"
,
"Views are one after the other"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
AV_STEREO3D_FRAMESEQUENCE
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
,
.
unit
=
"format"
},
{
.
i64
=
AV_STEREO3D_FRAMESEQUENCE
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
F
,
.
unit
=
"format"
},
{
"lines"
,
"Views are interleaved by lines"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
AV_STEREO3D_LINES
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
,
.
unit
=
"format"
},
{
.
i64
=
AV_STEREO3D_LINES
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
F
,
.
unit
=
"format"
},
{
"columns"
,
"Views are interleaved by columns"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
AV_STEREO3D_COLUMNS
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
,
.
unit
=
"format"
},
{
.
i64
=
AV_STEREO3D_COLUMNS
},
INT_MIN
,
INT_MAX
,
.
flags
=
V
F
,
.
unit
=
"format"
},
{
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