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
d9e3fe8c
Commit
d9e3fe8c
authored
Mar 22, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
postproc/postprocess_template: split first part of block loop
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
2a9b9579
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
postprocess_template.c
libpostproc/postprocess_template.c
+12
-4
No files found.
libpostproc/postprocess_template.c
View file @
d9e3fe8c
...
...
@@ -3471,11 +3471,9 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
for
(
x
=
0
;
x
<
width
;
){
int
startx
=
x
;
int
endx
=
FFMIN
(
width
,
x
+
32
);
uint8_t
*
dstBlockStart
=
dstBlock
;
const
uint8_t
*
srcBlockStart
=
srcBlock
;
for
(;
x
<
endx
;
x
+=
BLOCK_SIZE
){
const
int
stride
=
dstStride
;
av_unused
uint8_t
*
tmpXchg
;
#if TEMPLATE_PP_MMXEXT && HAVE_6REGS
/*
prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32);
...
...
@@ -3522,6 +3520,16 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
/* else if(mode & CUBIC_BLEND_DEINT_FILTER)
RENAME(deInterlaceBlendCubic)(dstBlock, dstStride);
*/
dstBlock
+=
8
;
srcBlock
+=
8
;
}
dstBlock
=
dstBlockStart
;
srcBlock
=
srcBlockStart
;
for
(
x
=
startx
;
x
<
endx
;
x
+=
BLOCK_SIZE
){
const
int
stride
=
dstStride
;
av_unused
uint8_t
*
tmpXchg
;
if
(
isColor
){
QP
=
QPptr
[
x
>>
qpHShift
];
...
...
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