Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
d2578ff9
Commit
d2578ff9
authored
15 years ago
by
Måns Rullgård
Browse files
Options
Downloads
Patches
Plain Diff
ARMv6 optimised pix_abs8
Originally committed as revision 21700 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
74cc33c2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/arm/dsputil_armv6.S
+30
-0
30 additions, 0 deletions
libavcodec/arm/dsputil_armv6.S
libavcodec/arm/dsputil_init_armv6.c
+6
-0
6 additions, 0 deletions
libavcodec/arm/dsputil_init_armv6.c
with
36 additions
and
0 deletions
libavcodec/arm/dsputil_armv6.S
+
30
−
0
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
2
f
ldrd
r4
,
r5
,
[
r1
],
r3
usada8
r0
,
r8
,
r6
,
r0
pld
[
r2
,
r3
]
usada8
lr
,
r9
,
r7
,
lr
b
1
b
2
:
usada8
r0
,
r8
,
r6
,
r0
usada8
lr
,
r9
,
r7
,
lr
add
r0
,
r0
,
lr
pop
{
r4
-
r9
,
pc
}
.
endfunc
This diff is collapsed.
Click to expand it.
libavcodec/arm/dsputil_init_armv6.c
+
6
−
0
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment