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
b5572ab8
Commit
b5572ab8
authored
Nov 28, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_boxblur: cosmetics to reduce diff to qatar
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7bfa2f25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vf_boxblur.c
libavfilter/vf_boxblur.c
+5
-5
No files found.
libavfilter/vf_boxblur.c
View file @
b5572ab8
...
@@ -155,12 +155,12 @@ static int config_input(AVFilterLink *inlink)
...
@@ -155,12 +155,12 @@ static int config_input(AVFilterLink *inlink)
boxblur
->
hsub
=
desc
->
log2_chroma_w
;
boxblur
->
hsub
=
desc
->
log2_chroma_w
;
boxblur
->
vsub
=
desc
->
log2_chroma_h
;
boxblur
->
vsub
=
desc
->
log2_chroma_h
;
var_values
[
VAR_W
]
=
inlink
->
w
;
var_values
[
VAR_W
]
=
inlink
->
w
;
var_values
[
VAR_H
]
=
inlink
->
h
;
var_values
[
VAR_H
]
=
inlink
->
h
;
var_values
[
VAR_CW
]
=
cw
=
w
>>
boxblur
->
hsub
;
var_values
[
VAR_CW
]
=
cw
=
w
>>
boxblur
->
hsub
;
var_values
[
VAR_CH
]
=
ch
=
h
>>
boxblur
->
vsub
;
var_values
[
VAR_CH
]
=
ch
=
h
>>
boxblur
->
vsub
;
var_values
[
VAR_HSUB
]
=
1
<<
boxblur
->
hsub
;
var_values
[
VAR_HSUB
]
=
1
<<
boxblur
->
hsub
;
var_values
[
VAR_VSUB
]
=
1
<<
boxblur
->
vsub
;
var_values
[
VAR_VSUB
]
=
1
<<
boxblur
->
vsub
;
#define EVAL_RADIUS_EXPR(comp) \
#define EVAL_RADIUS_EXPR(comp) \
expr = boxblur->comp##_radius_expr; \
expr = boxblur->comp##_radius_expr; \
...
@@ -226,9 +226,9 @@ static inline void blur(uint8_t *dst, int dst_step, const uint8_t *src, int src_
...
@@ -226,9 +226,9 @@ static inline void blur(uint8_t *dst, int dst_step, const uint8_t *src, int src_
* and subtracting 1 input pixel.
* and subtracting 1 input pixel.
* The following code adopts this faster variant.
* The following code adopts this faster variant.
*/
*/
int
x
,
sum
=
0
;
const
int
length
=
radius
*
2
+
1
;
const
int
length
=
radius
*
2
+
1
;
const
int
inv
=
((
1
<<
16
)
+
length
/
2
)
/
length
;
const
int
inv
=
((
1
<<
16
)
+
length
/
2
)
/
length
;
int
x
,
sum
=
0
;
for
(
x
=
0
;
x
<
radius
;
x
++
)
for
(
x
=
0
;
x
<
radius
;
x
++
)
sum
+=
src
[
x
*
src_step
]
<<
1
;
sum
+=
src
[
x
*
src_step
]
<<
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