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
d2578ff9
Commit
d2578ff9
authored
Feb 09, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARMv6 optimised pix_abs8
Originally committed as revision 21700 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
74cc33c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
dsputil_armv6.S
libavcodec/arm/dsputil_armv6.S
+30
-0
dsputil_init_armv6.c
libavcodec/arm/dsputil_init_armv6.c
+6
-0
No files found.
libavcodec/arm/dsputil_armv6.S
View file @
d2578ff9
...
...
@@ -428,3 +428,33 @@ function ff_pix_abs16_y2_armv6, export=1
pop {r4-r11, pc}
.endfunc
function ff_pix_abs8_armv6, export=1
pld [r2, r3]
ldr r12, [sp]
push {r4-r9, lr}
mov r0, #0
mov lr, #0
ldrd r4, r5, [r1], r3
1:
subs r12, r12, #2
ldr r7, [r2, #4]
ldr r6, [r2], r3
ldrd r8, r9, [r1], r3
usada8 r0, r4, r6, r0
pld [r2, r3]
usada8 lr, r5, r7, lr
ldr r7, [r2, #4]
ldr r6, [r2], r3
beq 2f
ldrd r4, r5, [r1], r3
usada8 r0, r8, r6, r0
pld [r2, r3]
usada8 lr, r9, r7, lr
b 1b
2:
usada8 r0, r8, r6, r0
usada8 lr, r9, r7, lr
add r0, r0, lr
pop {r4-r9, pc}
.endfunc
libavcodec/arm/dsputil_init_armv6.c
View file @
d2578ff9
...
...
@@ -57,6 +57,9 @@ int ff_pix_abs16_x2_armv6(void *s, uint8_t *blk1, uint8_t *blk2,
int
ff_pix_abs16_y2_armv6
(
void
*
s
,
uint8_t
*
blk1
,
uint8_t
*
blk2
,
int
line_size
,
int
h
);
int
ff_pix_abs8_armv6
(
void
*
s
,
uint8_t
*
blk1
,
uint8_t
*
blk2
,
int
line_size
,
int
h
);
void
av_cold
ff_dsputil_init_armv6
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
if
(
!
avctx
->
lowres
&&
(
avctx
->
idct_algo
==
FF_IDCT_AUTO
||
...
...
@@ -94,5 +97,8 @@ void av_cold ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx)
c
->
pix_abs
[
0
][
1
]
=
ff_pix_abs16_x2_armv6
;
c
->
pix_abs
[
0
][
2
]
=
ff_pix_abs16_y2_armv6
;
c
->
pix_abs
[
1
][
0
]
=
ff_pix_abs8_armv6
;
c
->
sad
[
0
]
=
ff_pix_abs16_armv6
;
c
->
sad
[
1
]
=
ff_pix_abs8_armv6
;
}
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