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
7f4a5006
Commit
7f4a5006
authored
Sep 18, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_pullup: remove junk_down nonsense
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
d5200550
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vf_pullup.c
libavfilter/vf_pullup.c
+1
-1
vf_pullup.h
libavfilter/vf_pullup.h
+1
-1
No files found.
libavfilter/vf_pullup.c
View file @
7f4a5006
...
...
@@ -41,7 +41,7 @@ static const AVOption pullup_options[] = {
{
"jl"
,
"set left junk size"
,
OFFSET
(
junk_left
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
INT_MAX
,
FLAGS
},
{
"jr"
,
"set right junk size"
,
OFFSET
(
junk_right
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
INT_MAX
,
FLAGS
},
{
"jt"
,
"set top junk size"
,
OFFSET
(
junk_top
),
AV_OPT_TYPE_INT
,
{.
i64
=
4
},
1
,
INT_MAX
,
FLAGS
},
{
"j
d"
,
"set down junk size"
,
OFFSET
(
junk_down
),
AV_OPT_TYPE_INT
,
{.
i64
=
4
},
1
,
INT_MAX
,
FLAGS
},
{
"j
b"
,
"set bottom junk size"
,
OFFSET
(
junk_bottom
),
AV_OPT_TYPE_INT
,
{.
i64
=
4
},
1
,
INT_MAX
,
FLAGS
},
{
"sb"
,
"set strict breaks"
,
OFFSET
(
strict_breaks
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
-
1
,
1
,
FLAGS
},
{
"mp"
,
"set metric plane"
,
OFFSET
(
metric_plane
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
2
,
FLAGS
,
"mp"
},
{
"y"
,
"luma"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
0
},
0
,
0
,
FLAGS
,
"mp"
},
...
...
libavfilter/vf_pullup.h
View file @
7f4a5006
...
...
@@ -48,7 +48,7 @@ typedef struct PullupFrame {
typedef
struct
PullupContext
{
const
AVClass
*
class
;
int
junk_left
,
junk_right
,
junk_top
,
junk_
down
,
junk_
bottom
;
int
junk_left
,
junk_right
,
junk_top
,
junk_bottom
;
int
metric_plane
;
int
strict_breaks
;
int
strict_pairs
;
...
...
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