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
1bf98d19
Commit
1bf98d19
authored
16 years ago
by
Måns Rullgård
Browse files
Options
Downloads
Patches
Plain Diff
ARM: NEON optimised h264_idct_dc_add
Originally committed as revision 16151 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c598cf25
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/armv4l/dsputil_neon.c
+2
-0
2 additions, 0 deletions
libavcodec/armv4l/dsputil_neon.c
libavcodec/armv4l/h264idct_neon.S
+19
-0
19 additions, 0 deletions
libavcodec/armv4l/h264idct_neon.S
with
21 additions
and
0 deletions
libavcodec/armv4l/dsputil_neon.c
+
2
−
0
View file @
1bf98d19
...
@@ -93,6 +93,7 @@ void ff_h264_h_loop_filter_chroma_neon(uint8_t *pix, int stride, int alpha,
...
@@ -93,6 +93,7 @@ void ff_h264_h_loop_filter_chroma_neon(uint8_t *pix, int stride, int alpha,
int
beta
,
int8_t
*
tc0
);
int
beta
,
int8_t
*
tc0
);
void
ff_h264_idct_add_neon
(
uint8_t
*
dst
,
DCTELEM
*
block
,
int
stride
);
void
ff_h264_idct_add_neon
(
uint8_t
*
dst
,
DCTELEM
*
block
,
int
stride
);
void
ff_h264_idct_dc_add_neon
(
uint8_t
*
dst
,
DCTELEM
*
block
,
int
stride
);
void
ff_dsputil_init_neon
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
void
ff_dsputil_init_neon
(
DSPContext
*
c
,
AVCodecContext
*
avctx
)
{
{
...
@@ -164,4 +165,5 @@ void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
...
@@ -164,4 +165,5 @@ void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
c
->
h264_h_loop_filter_chroma
=
ff_h264_h_loop_filter_chroma_neon
;
c
->
h264_h_loop_filter_chroma
=
ff_h264_h_loop_filter_chroma_neon
;
c
->
h264_idct_add
=
ff_h264_idct_add_neon
;
c
->
h264_idct_add
=
ff_h264_idct_add_neon
;
c
->
h264_idct_dc_add
=
ff_h264_idct_dc_add_neon
;
}
}
This diff is collapsed.
Click to expand it.
libavcodec/armv4l/h264idct_neon.S
+
19
−
0
View file @
1bf98d19
...
@@ -75,3 +75,22 @@ function ff_h264_idct_add_neon, export=1
...
@@ -75,3 +75,22 @@ function ff_h264_idct_add_neon, export=1
bx
lr
bx
lr
.
endfunc
.
endfunc
function
ff_h264_idct_dc_add_neon
,
export
=
1
vld1.16
{
d2
[],
d3
[]},
[
r1
,:
16
]
vrshr.s16
q1
,
q1
,
#
6
vld1.32
{
d0
[
0
]},
[
r0
,:
32
],
r2
vld1.32
{
d0
[
1
]},
[
r0
,:
32
],
r2
vaddw.u8
q2
,
q1
,
d0
vld1.32
{
d1
[
0
]},
[
r0
,:
32
],
r2
vld1.32
{
d1
[
1
]},
[
r0
,:
32
],
r2
vaddw.u8
q1
,
q1
,
d1
vqmovun.s16
d0
,
q2
vqmovun.s16
d1
,
q1
sub
r0
,
r0
,
r2
,
lsl
#
2
vst1.32
{
d0
[
0
]},
[
r0
,:
32
],
r2
vst1.32
{
d0
[
1
]},
[
r0
,:
32
],
r2
vst1.32
{
d1
[
0
]},
[
r0
,:
32
],
r2
vst1.32
{
d1
[
1
]},
[
r0
,:
32
],
r2
bx
lr
.
endfunc
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