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
45f9e053
Commit
45f9e053
authored
Jul 04, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_crop: add support for a, dar, sar, hsub, and vsub variables
Consistent with the pad and scale filters.
parent
61d55fda
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
1 deletion
+29
-1
filters.texi
doc/filters.texi
+13
-0
avfilter.h
libavfilter/avfilter.h
+1
-1
vf_crop.c
libavfilter/vf_crop.c
+15
-0
No files found.
doc/filters.texi
View file @
45f9e053
...
...
@@ -275,6 +275,19 @@ the output (cropped) width and heigth
@item ow, oh
same as @var{out_w} and @var{out_h}
@item a
same as @var{iw} / @var{ih}
@item sar
input sample aspect ratio
@item dar
input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
@item hsub, vsub
horizontal and vertical chroma subsample values. For example for the
pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
@item n
the number of input frame, starting from 0
...
...
libavfilter/avfilter.h
View file @
45f9e053
...
...
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 27
#define LIBAVFILTER_VERSION_MICRO
4
#define LIBAVFILTER_VERSION_MICRO
5
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
libavfilter/vf_crop.c
View file @
45f9e053
...
...
@@ -40,6 +40,11 @@ static const char *var_names[] = {
"in_h"
,
"ih"
,
///< height of the input video
"out_w"
,
"ow"
,
///< width of the cropped video
"out_h"
,
"oh"
,
///< height of the cropped video
"a"
,
"sar"
,
"dar"
,
"hsub"
,
"vsub"
,
"x"
,
"y"
,
"n"
,
///< number of frame
...
...
@@ -56,6 +61,11 @@ enum var_name {
VAR_IN_H
,
VAR_IH
,
VAR_OUT_W
,
VAR_OW
,
VAR_OUT_H
,
VAR_OH
,
VAR_A
,
VAR_SAR
,
VAR_DAR
,
VAR_HSUB
,
VAR_VSUB
,
VAR_X
,
VAR_Y
,
VAR_N
,
...
...
@@ -162,6 +172,11 @@ static int config_input(AVFilterLink *link)
crop
->
var_values
[
VAR_PI
]
=
M_PI
;
crop
->
var_values
[
VAR_IN_W
]
=
crop
->
var_values
[
VAR_IW
]
=
ctx
->
inputs
[
0
]
->
w
;
crop
->
var_values
[
VAR_IN_H
]
=
crop
->
var_values
[
VAR_IH
]
=
ctx
->
inputs
[
0
]
->
h
;
crop
->
var_values
[
VAR_A
]
=
(
float
)
link
->
w
/
link
->
h
;
crop
->
var_values
[
VAR_SAR
]
=
link
->
sample_aspect_ratio
.
num
?
av_q2d
(
link
->
sample_aspect_ratio
)
:
1
;
crop
->
var_values
[
VAR_DAR
]
=
crop
->
var_values
[
VAR_A
]
*
crop
->
var_values
[
VAR_SAR
];
crop
->
var_values
[
VAR_HSUB
]
=
1
<<
pix_desc
->
log2_chroma_w
;
crop
->
var_values
[
VAR_VSUB
]
=
1
<<
pix_desc
->
log2_chroma_h
;
crop
->
var_values
[
VAR_X
]
=
NAN
;
crop
->
var_values
[
VAR_Y
]
=
NAN
;
crop
->
var_values
[
VAR_OUT_W
]
=
crop
->
var_values
[
VAR_OW
]
=
NAN
;
...
...
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