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
d782bca4
Commit
d782bca4
authored
Mar 29, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ac3enc: NEON optimised float_to_fixed24
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
6d9f52b2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
ac3dsp_init_arm.c
libavcodec/arm/ac3dsp_init_arm.c
+2
-0
ac3dsp_neon.S
libavcodec/arm/ac3dsp_neon.S
+14
-0
No files found.
libavcodec/arm/ac3dsp_init_arm.c
View file @
d782bca4
...
...
@@ -27,6 +27,7 @@ void ff_ac3_exponent_min_neon(uint8_t *exp, int num_reuse_blocks, int nb_coefs);
int
ff_ac3_max_msb_abs_int16_neon
(
const
int16_t
*
src
,
int
len
);
void
ff_ac3_lshift_int16_neon
(
int16_t
*
src
,
unsigned
len
,
unsigned
shift
);
void
ff_ac3_rshift_int32_neon
(
int32_t
*
src
,
unsigned
len
,
unsigned
shift
);
void
ff_float_to_fixed24_neon
(
int32_t
*
dst
,
const
float
*
src
,
unsigned
int
len
);
av_cold
void
ff_ac3dsp_init_arm
(
AC3DSPContext
*
c
,
int
bit_exact
)
{
...
...
@@ -35,5 +36,6 @@ av_cold void ff_ac3dsp_init_arm(AC3DSPContext *c, int bit_exact)
c
->
ac3_max_msb_abs_int16
=
ff_ac3_max_msb_abs_int16_neon
;
c
->
ac3_lshift_int16
=
ff_ac3_lshift_int16_neon
;
c
->
ac3_rshift_int32
=
ff_ac3_rshift_int32_neon
;
c
->
float_to_fixed24
=
ff_float_to_fixed24_neon
;
}
}
libavcodec/arm/ac3dsp_neon.S
View file @
d782bca4
...
...
@@ -78,3 +78,17 @@ function ff_ac3_rshift_int32_neon, export=1
bgt 1b
bx lr
endfunc
function ff_float_to_fixed24_neon, export=1
1: vld1.32 {q0-q1}, [r1,:128]!
vcvt.s32.f32 q0, q0, #24
vld1.32 {q2-q3}, [r1,:128]!
vcvt.s32.f32 q1, q1, #24
vcvt.s32.f32 q2, q2, #24
vst1.32 {q0-q1}, [r0,:128]!
vcvt.s32.f32 q3, q3, #24
vst1.32 {q2-q3}, [r0,:128]!
subs r2, r2, #16
bgt 1b
bx lr
endfunc
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