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
49456ed6
Commit
49456ed6
authored
Jan 25, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_uspp: Use FF_CEIL_RSHIFT() correct rounding of odd w/h
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
da048c6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
vf_uspp.c
libavfilter/vf_uspp.c
+13
-8
No files found.
libavfilter/vf_uspp.c
View file @
49456ed6
...
@@ -189,8 +189,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
...
@@ -189,8 +189,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
for
(
i
=
0
;
i
<
3
;
i
++
)
{
for
(
i
=
0
;
i
<
3
;
i
++
)
{
int
is_chroma
=
!!
i
;
int
is_chroma
=
!!
i
;
int
w
=
width
>>
(
is_chroma
?
p
->
hsub
:
0
);
int
w
=
FF_CEIL_RSHIFT
(
width
,
is_chroma
?
p
->
hsub
:
0
);
int
h
=
height
>>
(
is_chroma
?
p
->
vsub
:
0
);
int
h
=
FF_CEIL_RSHIFT
(
height
,
is_chroma
?
p
->
vsub
:
0
);
int
stride
=
p
->
temp_stride
[
i
];
int
stride
=
p
->
temp_stride
[
i
];
int
block
=
BLOCK
>>
(
is_chroma
?
p
->
hsub
:
0
);
int
block
=
BLOCK
>>
(
is_chroma
?
p
->
hsub
:
0
);
...
@@ -263,8 +263,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
...
@@ -263,8 +263,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
offset
=
(
BLOCKc
-
x1c
)
+
(
BLOCKc
-
y1c
)
*
p
->
frame_dec
->
linesize
[
1
];
offset
=
(
BLOCKc
-
x1c
)
+
(
BLOCKc
-
y1c
)
*
p
->
frame_dec
->
linesize
[
1
];
for
(
y
=
0
;
y
<
height
>>
p
->
vsub
;
y
++
)
{
for
(
y
=
0
;
y
<
FF_CEIL_RSHIFT
(
height
,
p
->
vsub
)
;
y
++
)
{
for
(
x
=
0
;
x
<
width
>>
p
->
hsub
;
x
++
)
{
for
(
x
=
0
;
x
<
FF_CEIL_RSHIFT
(
width
,
p
->
hsub
)
;
x
++
)
{
p
->
temp
[
1
][
x
+
y
*
p
->
temp_stride
[
1
]]
+=
p
->
frame_dec
->
data
[
1
][
x
+
y
*
p
->
frame_dec
->
linesize
[
1
]
+
offset
];
p
->
temp
[
1
][
x
+
y
*
p
->
temp_stride
[
1
]]
+=
p
->
frame_dec
->
data
[
1
][
x
+
y
*
p
->
frame_dec
->
linesize
[
1
]
+
offset
];
p
->
temp
[
2
][
x
+
y
*
p
->
temp_stride
[
2
]]
+=
p
->
frame_dec
->
data
[
2
][
x
+
y
*
p
->
frame_dec
->
linesize
[
2
]
+
offset
];
p
->
temp
[
2
][
x
+
y
*
p
->
temp_stride
[
2
]]
+=
p
->
frame_dec
->
data
[
2
][
x
+
y
*
p
->
frame_dec
->
linesize
[
2
]
+
offset
];
}
}
...
@@ -276,8 +276,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
...
@@ -276,8 +276,8 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
if
(
!
dst
[
j
])
if
(
!
dst
[
j
])
continue
;
continue
;
store_slice_c
(
dst
[
j
],
p
->
temp
[
j
],
dst_stride
[
j
],
p
->
temp_stride
[
j
],
store_slice_c
(
dst
[
j
],
p
->
temp
[
j
],
dst_stride
[
j
],
p
->
temp_stride
[
j
],
width
>>
(
is_chroma
?
p
->
hsub
:
0
),
FF_CEIL_RSHIFT
(
width
,
is_chroma
?
p
->
hsub
:
0
),
height
>>
(
is_chroma
?
p
->
vsub
:
0
),
FF_CEIL_RSHIFT
(
height
,
is_chroma
?
p
->
vsub
:
0
),
8
-
p
->
log2_count
);
8
-
p
->
log2_count
);
}
}
}
}
...
@@ -318,8 +318,13 @@ static int config_input(AVFilterLink *inlink)
...
@@ -318,8 +318,13 @@ static int config_input(AVFilterLink *inlink)
for
(
i
=
0
;
i
<
3
;
i
++
)
{
for
(
i
=
0
;
i
<
3
;
i
++
)
{
int
is_chroma
=
!!
i
;
int
is_chroma
=
!!
i
;
int
w
=
((
width
+
4
*
BLOCK
-
1
)
&
(
~
(
2
*
BLOCK
-
1
)))
>>
(
is_chroma
?
uspp
->
hsub
:
0
);
int
w
=
(
width
+
4
*
BLOCK
-
1
)
&
(
~
(
2
*
BLOCK
-
1
));
int
h
=
((
height
+
4
*
BLOCK
-
1
)
&
(
~
(
2
*
BLOCK
-
1
)))
>>
(
is_chroma
?
uspp
->
vsub
:
0
);
int
h
=
(
height
+
4
*
BLOCK
-
1
)
&
(
~
(
2
*
BLOCK
-
1
));
if
(
is_chroma
)
{
w
=
FF_CEIL_RSHIFT
(
w
,
uspp
->
hsub
);
h
=
FF_CEIL_RSHIFT
(
h
,
uspp
->
vsub
);
}
uspp
->
temp_stride
[
i
]
=
w
;
uspp
->
temp_stride
[
i
]
=
w
;
if
(
!
(
uspp
->
temp
[
i
]
=
av_malloc_array
(
uspp
->
temp_stride
[
i
],
h
*
sizeof
(
int16_t
))))
if
(
!
(
uspp
->
temp
[
i
]
=
av_malloc_array
(
uspp
->
temp_stride
[
i
],
h
*
sizeof
(
int16_t
))))
...
...
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