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
73edb58c
Commit
73edb58c
authored
12 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
swr: float_to_int16_sse2()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
5932938c
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
libswresample/x86/audio_convert.asm
+33
-0
33 additions, 0 deletions
libswresample/x86/audio_convert.asm
libswresample/x86/swresample_x86.c
+3
-0
3 additions, 0 deletions
libswresample/x86/swresample_x86.c
with
36 additions
and
0 deletions
libswresample/x86/audio_convert.asm
+
33
−
0
View file @
73edb58c
...
...
@@ -25,6 +25,7 @@ SECTION_RODATA
flt2pm31:
times
8
dd
4.6566129
e
-
10
flt2p31
:
times
8
dd
2147483648.0
flt2p15
:
times
8
dd
32768.0
SECTION
.text
...
...
@@ -163,6 +164,36 @@ float_to_int32_u_int %+ SUFFIX
REP_RET
%endmacro
%macro FLOAT_TO_INT16 1
cglobal
float_to_int16_
%
1
,
3
,
3
,
3
,
ds
t
,
src
,
len
mov
srcq
,
[
srcq
]
mov
ds
tq
,
[
ds
tq
]
%ifidn %1, a
test
ds
tq
,
mmsize
-
1
jne
float_to_int16_u_int
%+
SUFFIX
test
srcq
,
mmsize
-
1
jne
float_to_int16_u_int
%+
SUFFIX
%else
float_to_int16_u_int
%+
SUFFIX
%endif
lea
srcq
,
[
srcq
+
2
*
lenq
]
add
ds
tq
,
lenq
neg
lenq
mova
m2
,
[
flt2p15
]
.next:
mov
%
1
m0
,
[
srcq
+
2
*
lenq
]
mov
%
1
m1
,
[
mmsize
+
srcq
+
2
*
lenq
]
mulps
m0
,
m2
mulps
m1
,
m2
cvtps2dq
m0
,
m0
cvtps2dq
m1
,
m1
packssdw
m0
,
m1
mov
%
1
[
ds
tq
+
lenq
],
m0
add
lenq
,
mmsize
jl
.next
REP_RET
%endmacro
INIT_MMX
mmx
INT16_TO_INT32
u
...
...
@@ -179,3 +210,5 @@ INT16_TO_FLOAT u
INT16_TO_FLOAT
a
FLOAT_TO_INT32
u
FLOAT_TO_INT32
a
FLOAT_TO_INT16
u
FLOAT_TO_INT16
a
This diff is collapsed.
Click to expand it.
libswresample/x86/swresample_x86.c
+
3
−
0
View file @
73edb58c
...
...
@@ -29,6 +29,7 @@ MULTI_CAPS_FUNC_DECL(sse)
void
ff_int32_to_float_a_sse2
(
uint8_t
**
dst
,
const
uint8_t
**
src
,
int
len
);
void
ff_int16_to_float_a_sse2
(
uint8_t
**
dst
,
const
uint8_t
**
src
,
int
len
);
void
ff_float_to_int32_a_sse2
(
uint8_t
**
dst
,
const
uint8_t
**
src
,
int
len
);
void
ff_float_to_int16_a_sse2
(
uint8_t
**
dst
,
const
uint8_t
**
src
,
int
len
);
void
swri_audio_convert_init_x86
(
struct
AudioConvert
*
ac
,
enum
AVSampleFormat
out_fmt
,
...
...
@@ -56,5 +57,7 @@ MULTI_CAPS_FUNC(AV_CPU_FLAG_SSE, sse)
ac
->
simd_f
=
ff_int16_to_float_a_sse2
;
if
(
out_fmt
==
AV_SAMPLE_FMT_S32
&&
in_fmt
==
AV_SAMPLE_FMT_FLT
||
out_fmt
==
AV_SAMPLE_FMT_S32P
&&
in_fmt
==
AV_SAMPLE_FMT_FLTP
)
ac
->
simd_f
=
ff_float_to_int32_a_sse2
;
if
(
out_fmt
==
AV_SAMPLE_FMT_S16
&&
in_fmt
==
AV_SAMPLE_FMT_FLT
||
out_fmt
==
AV_SAMPLE_FMT_S16P
&&
in_fmt
==
AV_SAMPLE_FMT_FLTP
)
ac
->
simd_f
=
ff_float_to_int16_a_sse2
;
}
}
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