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
4d7d7480
Commit
4d7d7480
authored
Aug 20, 2016
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_crop: make possible to do exact cropping for subsampled videos
parent
a3cab3d4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
filters.texi
doc/filters.texi
+5
-0
vf_crop.c
libavfilter/vf_crop.c
+15
-6
No files found.
doc/filters.texi
View file @
4d7d7480
...
@@ -5633,6 +5633,11 @@ This expression is evaluated per-frame.
...
@@ -5633,6 +5633,11 @@ This expression is evaluated per-frame.
If set to 1 will force the output display aspect ratio
If set to 1 will force the output display aspect ratio
to be the same of the input, by changing the output sample aspect
to be the same of the input, by changing the output sample aspect
ratio. It defaults to 0.
ratio. It defaults to 0.
@item exact
Enable exact cropping. If enabled, subsampled videos will be cropped at exact
width/height/x/y as specified and will not be rounded to nearest smaller value.
It defaults to 0.
@end table
@end table
The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
...
...
libavfilter/vf_crop.c
View file @
4d7d7480
...
@@ -82,6 +82,7 @@ typedef struct CropContext {
...
@@ -82,6 +82,7 @@ typedef struct CropContext {
AVRational
out_sar
;
///< output sample aspect ratio
AVRational
out_sar
;
///< output sample aspect ratio
int
keep_aspect
;
///< keep display aspect ratio when cropping
int
keep_aspect
;
///< keep display aspect ratio when cropping
int
exact
;
///< exact cropping, for subsampled formats
int
max_step
[
4
];
///< max pixel step for each plane, expressed as a number of bytes
int
max_step
[
4
];
///< max pixel step for each plane, expressed as a number of bytes
int
hsub
,
vsub
;
///< chroma subsampling
int
hsub
,
vsub
;
///< chroma subsampling
...
@@ -184,8 +185,11 @@ static int config_input(AVFilterLink *link)
...
@@ -184,8 +185,11 @@ static int config_input(AVFilterLink *link)
s
->
w_expr
,
s
->
h_expr
);
s
->
w_expr
,
s
->
h_expr
);
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
}
}
if
(
!
s
->
exact
)
{
s
->
w
&=
~
((
1
<<
s
->
hsub
)
-
1
);
s
->
w
&=
~
((
1
<<
s
->
hsub
)
-
1
);
s
->
h
&=
~
((
1
<<
s
->
vsub
)
-
1
);
s
->
h
&=
~
((
1
<<
s
->
vsub
)
-
1
);
}
av_expr_free
(
s
->
x_pexpr
);
av_expr_free
(
s
->
x_pexpr
);
av_expr_free
(
s
->
y_pexpr
);
av_expr_free
(
s
->
y_pexpr
);
...
@@ -219,8 +223,10 @@ static int config_input(AVFilterLink *link)
...
@@ -219,8 +223,10 @@ static int config_input(AVFilterLink *link)
/* set default, required in the case the first computed value for x/y is NAN */
/* set default, required in the case the first computed value for x/y is NAN */
s
->
x
=
(
link
->
w
-
s
->
w
)
/
2
;
s
->
x
=
(
link
->
w
-
s
->
w
)
/
2
;
s
->
y
=
(
link
->
h
-
s
->
h
)
/
2
;
s
->
y
=
(
link
->
h
-
s
->
h
)
/
2
;
if
(
!
s
->
exact
)
{
s
->
x
&=
~
((
1
<<
s
->
hsub
)
-
1
);
s
->
x
&=
~
((
1
<<
s
->
hsub
)
-
1
);
s
->
y
&=
~
((
1
<<
s
->
vsub
)
-
1
);
s
->
y
&=
~
((
1
<<
s
->
vsub
)
-
1
);
}
return
0
;
return
0
;
fail_expr:
fail_expr:
...
@@ -269,8 +275,10 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
...
@@ -269,8 +275,10 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
s
->
x
=
link
->
w
-
s
->
w
;
s
->
x
=
link
->
w
-
s
->
w
;
if
((
unsigned
)
s
->
y
+
(
unsigned
)
s
->
h
>
link
->
h
)
if
((
unsigned
)
s
->
y
+
(
unsigned
)
s
->
h
>
link
->
h
)
s
->
y
=
link
->
h
-
s
->
h
;
s
->
y
=
link
->
h
-
s
->
h
;
if
(
!
s
->
exact
)
{
s
->
x
&=
~
((
1
<<
s
->
hsub
)
-
1
);
s
->
x
&=
~
((
1
<<
s
->
hsub
)
-
1
);
s
->
y
&=
~
((
1
<<
s
->
vsub
)
-
1
);
s
->
y
&=
~
((
1
<<
s
->
vsub
)
-
1
);
}
av_log
(
ctx
,
AV_LOG_TRACE
,
"n:%d t:%f pos:%f x:%d y:%d x+w:%d y+h:%d
\n
"
,
av_log
(
ctx
,
AV_LOG_TRACE
,
"n:%d t:%f pos:%f x:%d y:%d x+w:%d y+h:%d
\n
"
,
(
int
)
s
->
var_values
[
VAR_N
],
s
->
var_values
[
VAR_T
],
s
->
var_values
[
VAR_POS
],
(
int
)
s
->
var_values
[
VAR_N
],
s
->
var_values
[
VAR_T
],
s
->
var_values
[
VAR_POS
],
...
@@ -344,6 +352,7 @@ static const AVOption crop_options[] = {
...
@@ -344,6 +352,7 @@ static const AVOption crop_options[] = {
{
"x"
,
"set the x crop area expression"
,
OFFSET
(
x_expr
),
AV_OPT_TYPE_STRING
,
{.
str
=
"(in_w-out_w)/2"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"x"
,
"set the x crop area expression"
,
OFFSET
(
x_expr
),
AV_OPT_TYPE_STRING
,
{.
str
=
"(in_w-out_w)/2"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"y"
,
"set the y crop area expression"
,
OFFSET
(
y_expr
),
AV_OPT_TYPE_STRING
,
{.
str
=
"(in_h-out_h)/2"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"y"
,
"set the y crop area expression"
,
OFFSET
(
y_expr
),
AV_OPT_TYPE_STRING
,
{.
str
=
"(in_h-out_h)/2"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"keep_aspect"
,
"keep aspect ratio"
,
OFFSET
(
keep_aspect
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
0
},
0
,
1
,
FLAGS
},
{
"keep_aspect"
,
"keep aspect ratio"
,
OFFSET
(
keep_aspect
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
0
},
0
,
1
,
FLAGS
},
{
"exact"
,
"do exact cropping"
,
OFFSET
(
exact
),
AV_OPT_TYPE_BOOL
,
{.
i64
=
0
},
0
,
1
,
FLAGS
},
{
NULL
}
{
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