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
f1b359aa
Commit
f1b359aa
authored
Mar 23, 2019
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_crop: Add support for cropping hardware frames
Set the cropping fields in the AVFrame.
parent
4ef0bea2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
23 deletions
+50
-23
vf_crop.c
libavfilter/vf_crop.c
+50
-23
No files found.
libavfilter/vf_crop.c
View file @
f1b359aa
...
...
@@ -98,9 +98,17 @@ static int query_formats(AVFilterContext *ctx)
for
(
fmt
=
0
;
av_pix_fmt_desc_get
(
fmt
);
fmt
++
)
{
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
fmt
);
if
(
!
(
desc
->
flags
&
(
AV_PIX_FMT_FLAG_HWACCEL
|
AV_PIX_FMT_FLAG_BITSTREAM
))
&&
!
((
desc
->
log2_chroma_w
||
desc
->
log2_chroma_h
)
&&
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PLANAR
))
&&
(
ret
=
ff_add_format
(
&
formats
,
fmt
))
<
0
)
if
(
desc
->
flags
&
AV_PIX_FMT_FLAG_BITSTREAM
)
continue
;
if
(
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_HWACCEL
))
{
// Not usable if there is any subsampling but the format is
// not planar (e.g. YUYV422).
if
((
desc
->
log2_chroma_w
||
desc
->
log2_chroma_h
)
&&
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PLANAR
))
continue
;
}
ret
=
ff_add_format
(
&
formats
,
fmt
);
if
(
ret
<
0
)
return
ret
;
}
...
...
@@ -157,8 +165,14 @@ static int config_input(AVFilterLink *link)
s
->
var_values
[
VAR_POS
]
=
NAN
;
av_image_fill_max_pixsteps
(
s
->
max_step
,
NULL
,
pix_desc
);
s
->
hsub
=
pix_desc
->
log2_chroma_w
;
s
->
vsub
=
pix_desc
->
log2_chroma_h
;
if
(
pix_desc
->
flags
&
AV_PIX_FMT_FLAG_HWACCEL
)
{
s
->
hsub
=
1
;
s
->
vsub
=
1
;
}
else
{
s
->
hsub
=
pix_desc
->
log2_chroma_w
;
s
->
vsub
=
pix_desc
->
log2_chroma_h
;
}
if
((
ret
=
av_expr_parse_and_eval
(
&
res
,
(
expr
=
s
->
w_expr
),
var_names
,
s
->
var_values
,
...
...
@@ -237,9 +251,15 @@ fail_expr:
static
int
config_output
(
AVFilterLink
*
link
)
{
CropContext
*
s
=
link
->
src
->
priv
;
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
link
->
format
);
link
->
w
=
s
->
w
;
link
->
h
=
s
->
h
;
if
(
desc
->
flags
&
AV_PIX_FMT_FLAG_HWACCEL
)
{
// Hardware frames adjust the cropping regions rather than
// changing the frame size.
}
else
{
link
->
w
=
s
->
w
;
link
->
h
=
s
->
h
;
}
link
->
sample_aspect_ratio
=
s
->
out_sar
;
return
0
;
...
...
@@ -252,9 +272,6 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
link
->
format
);
int
i
;
frame
->
width
=
s
->
w
;
frame
->
height
=
s
->
h
;
s
->
var_values
[
VAR_N
]
=
link
->
frame_count_out
;
s
->
var_values
[
VAR_T
]
=
frame
->
pts
==
AV_NOPTS_VALUE
?
NAN
:
frame
->
pts
*
av_q2d
(
link
->
time_base
);
...
...
@@ -285,22 +302,32 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
(
int
)
s
->
var_values
[
VAR_N
],
s
->
var_values
[
VAR_T
],
s
->
var_values
[
VAR_POS
],
s
->
x
,
s
->
y
,
s
->
x
+
s
->
w
,
s
->
y
+
s
->
h
);
frame
->
data
[
0
]
+=
s
->
y
*
frame
->
linesize
[
0
];
frame
->
data
[
0
]
+=
s
->
x
*
s
->
max_step
[
0
];
if
(
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PAL
||
desc
->
flags
&
FF_PSEUDOPAL
))
{
for
(
i
=
1
;
i
<
3
;
i
++
)
{
if
(
frame
->
data
[
i
])
{
frame
->
data
[
i
]
+=
(
s
->
y
>>
s
->
vsub
)
*
frame
->
linesize
[
i
];
frame
->
data
[
i
]
+=
(
s
->
x
*
s
->
max_step
[
i
])
>>
s
->
hsub
;
if
(
desc
->
flags
&
AV_PIX_FMT_FLAG_HWACCEL
)
{
frame
->
crop_top
+=
s
->
y
;
frame
->
crop_left
+=
s
->
x
;
frame
->
crop_bottom
=
frame
->
height
-
frame
->
crop_top
-
frame
->
crop_bottom
-
s
->
h
;
frame
->
crop_right
=
frame
->
width
-
frame
->
crop_left
-
frame
->
crop_right
-
s
->
w
;
}
else
{
frame
->
width
=
s
->
w
;
frame
->
height
=
s
->
h
;
frame
->
data
[
0
]
+=
s
->
y
*
frame
->
linesize
[
0
];
frame
->
data
[
0
]
+=
s
->
x
*
s
->
max_step
[
0
];
if
(
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PAL
||
desc
->
flags
&
FF_PSEUDOPAL
))
{
for
(
i
=
1
;
i
<
3
;
i
++
)
{
if
(
frame
->
data
[
i
])
{
frame
->
data
[
i
]
+=
(
s
->
y
>>
s
->
vsub
)
*
frame
->
linesize
[
i
];
frame
->
data
[
i
]
+=
(
s
->
x
*
s
->
max_step
[
i
])
>>
s
->
hsub
;
}
}
}
}
/* alpha plane */
if
(
frame
->
data
[
3
])
{
frame
->
data
[
3
]
+=
s
->
y
*
frame
->
linesize
[
3
];
frame
->
data
[
3
]
+=
s
->
x
*
s
->
max_step
[
3
];
/* alpha plane */
if
(
frame
->
data
[
3
])
{
frame
->
data
[
3
]
+=
s
->
y
*
frame
->
linesize
[
3
];
frame
->
data
[
3
]
+=
s
->
x
*
s
->
max_step
[
3
];
}
}
return
ff_filter_frame
(
link
->
dst
->
outputs
[
0
],
frame
);
...
...
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