Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
09603dcf
Commit
09603dcf
authored
Aug 12, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_unsharp: store hsub/vsub in the filter context
Also drop obfuscating CHROMA_WIDTH/HEIGHT macros.
parent
53e86382
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
vf_unsharp.c
libavfilter/vf_unsharp.c
+12
-6
No files found.
libavfilter/vf_unsharp.c
View file @
09603dcf
...
...
@@ -44,8 +44,8 @@
#define MIN_SIZE 3
#define MAX_SIZE 13
#define CHROMA_WIDTH(link) -((-link->w) >> av_pix_fmt_descriptors[link->format].log2_chroma_w)
#define
CHROMA_HEIGHT(link) -((-link->h) >> av_pix_fmt_descriptors[link->format].log2_chroma_h
)
/* right-shift and round-up */
#define
SHIFTUP(x,shift) (-((-(x))>>(shift))
)
typedef
struct
FilterParam
{
int
msize_x
;
///< matrix width
...
...
@@ -61,6 +61,7 @@ typedef struct FilterParam {
typedef
struct
{
FilterParam
luma
;
///< luma parameters (width, height, amount)
FilterParam
chroma
;
///< chroma parameters (width, height, amount)
int
hsub
,
vsub
;
}
UnsharpContext
;
static
void
apply_unsharp
(
uint8_t
*
dst
,
int
dst_stride
,
...
...
@@ -180,8 +181,11 @@ static int config_props(AVFilterLink *link)
{
UnsharpContext
*
unsharp
=
link
->
dst
->
priv
;
unsharp
->
hsub
=
av_pix_fmt_descriptors
[
link
->
format
].
log2_chroma_w
;
unsharp
->
vsub
=
av_pix_fmt_descriptors
[
link
->
format
].
log2_chroma_h
;
init_filter_param
(
link
->
dst
,
&
unsharp
->
luma
,
"luma"
,
link
->
w
);
init_filter_param
(
link
->
dst
,
&
unsharp
->
chroma
,
"chroma"
,
CHROMA_WIDTH
(
link
));
init_filter_param
(
link
->
dst
,
&
unsharp
->
chroma
,
"chroma"
,
SHIFTUP
(
link
->
w
,
unsharp
->
hsub
));
return
0
;
}
...
...
@@ -207,10 +211,12 @@ static void end_frame(AVFilterLink *link)
UnsharpContext
*
unsharp
=
link
->
dst
->
priv
;
AVFilterBufferRef
*
in
=
link
->
cur_buf
;
AVFilterBufferRef
*
out
=
link
->
dst
->
outputs
[
0
]
->
out_buf
;
int
cw
=
SHIFTUP
(
link
->
w
,
unsharp
->
hsub
);
int
ch
=
SHIFTUP
(
link
->
h
,
unsharp
->
vsub
);
apply_unsharp
(
out
->
data
[
0
],
out
->
linesize
[
0
],
in
->
data
[
0
],
in
->
linesize
[
0
],
link
->
w
,
link
->
h
,
&
unsharp
->
luma
);
apply_unsharp
(
out
->
data
[
1
],
out
->
linesize
[
1
],
in
->
data
[
1
],
in
->
linesize
[
1
],
CHROMA_WIDTH
(
link
),
CHROMA_HEIGHT
(
link
),
&
unsharp
->
chroma
);
apply_unsharp
(
out
->
data
[
2
],
out
->
linesize
[
2
],
in
->
data
[
2
],
in
->
linesize
[
2
],
CHROMA_WIDTH
(
link
),
CHROMA_HEIGHT
(
link
),
&
unsharp
->
chroma
);
apply_unsharp
(
out
->
data
[
0
],
out
->
linesize
[
0
],
in
->
data
[
0
],
in
->
linesize
[
0
],
link
->
w
,
link
->
h
,
&
unsharp
->
luma
);
apply_unsharp
(
out
->
data
[
1
],
out
->
linesize
[
1
],
in
->
data
[
1
],
in
->
linesize
[
1
],
cw
,
ch
,
&
unsharp
->
chroma
);
apply_unsharp
(
out
->
data
[
2
],
out
->
linesize
[
2
],
in
->
data
[
2
],
in
->
linesize
[
2
],
cw
,
ch
,
&
unsharp
->
chroma
);
avfilter_unref_buffer
(
in
);
avfilter_draw_slice
(
link
->
dst
->
outputs
[
0
],
0
,
link
->
h
,
1
);
...
...
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