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
c140fb2c
Commit
c140fb2c
authored
13 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
lavr: add x86-optimized functions for mixing 2 to 1 s16p with float coeffs
parent
8dfc1227
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavresample/x86/audio_mix.asm
+45
-0
45 additions, 0 deletions
libavresample/x86/audio_mix.asm
libavresample/x86/audio_mix_init.c
+13
-0
13 additions, 0 deletions
libavresample/x86/audio_mix_init.c
libavresample/x86/util.asm
+34
-0
34 additions, 0 deletions
libavresample/x86/util.asm
with
92 additions
and
0 deletions
libavresample/x86/audio_mix.asm
+
45
−
0
View file @
c140fb2c
...
...
@@ -21,6 +21,7 @@
%include "x86inc.asm"
%include "x86util.asm"
%include "util.asm"
SECTION
_TEXT
...
...
@@ -64,3 +65,47 @@ MIX_2_TO_1_FLTP_FLT
INIT_YMM
avx
MIX_2_TO_1_FLTP_FLT
%endif
;-----------------------------------------------------------------------------
; void ff_mix_2_to_1_s16p_flt(int16_t **src, float **matrix, int len,
; int out_ch, int in_ch);
;-----------------------------------------------------------------------------
%macro MIX_2_TO_1_S16P_FLT 0
cglobal
mix_2_to_1_s16p_flt
,
3
,
4
,
6
,
src
,
matrix
,
len
,
src1
mov
src1q
,
[
srcq
+
gprsize
]
mov
srcq
,
[
srcq
]
sub
src1q
,
srcq
mov
matrixq
,
[
matrixq
]
VBROADCASTSS
m4
,
[
matrixq
]
VBROADCASTSS
m5
,
[
matrixq
+
4
]
ALIGN
16
.loop:
mova
m0
,
[
srcq
]
mova
m2
,
[
srcq
+
src1q
]
S16_TO_S32_SX
0
,
1
S16_TO_S32_SX
2
,
3
cvtdq2ps
m0
,
m0
cvtdq2ps
m1
,
m1
cvtdq2ps
m2
,
m2
cvtdq2ps
m3
,
m3
mulps
m0
,
m4
mulps
m1
,
m4
mulps
m2
,
m5
mulps
m3
,
m5
addps
m0
,
m2
addps
m1
,
m3
cvtps2dq
m0
,
m0
cvtps2dq
m1
,
m1
packssdw
m0
,
m1
mova
[
srcq
],
m0
add
srcq
,
mmsize
sub
lend
,
mmsize
/
2
jg
.loop
REP_RET
%endmacro
INIT_XMM
ss
e2
MIX_2_TO_1_S16P_FLT
INIT_XMM
ss
e4
MIX_2_TO_1_S16P_FLT
This diff is collapsed.
Click to expand it.
libavresample/x86/audio_mix_init.c
+
13
−
0
View file @
c140fb2c
...
...
@@ -27,6 +27,11 @@ extern void ff_mix_2_to_1_fltp_flt_sse(float **src, float **matrix, int len,
extern
void
ff_mix_2_to_1_fltp_flt_avx
(
float
**
src
,
float
**
matrix
,
int
len
,
int
out_ch
,
int
in_ch
);
extern
void
ff_mix_2_to_1_s16p_flt_sse2
(
int16_t
**
src
,
float
**
matrix
,
int
len
,
int
out_ch
,
int
in_ch
);
extern
void
ff_mix_2_to_1_s16p_flt_sse4
(
int16_t
**
src
,
float
**
matrix
,
int
len
,
int
out_ch
,
int
in_ch
);
av_cold
void
ff_audio_mix_init_x86
(
AudioMix
*
am
)
{
#if HAVE_YASM
...
...
@@ -36,6 +41,14 @@ av_cold void ff_audio_mix_init_x86(AudioMix *am)
ff_audio_mix_set_func
(
am
,
AV_SAMPLE_FMT_FLTP
,
AV_MIX_COEFF_TYPE_FLT
,
2
,
1
,
16
,
8
,
"SSE"
,
ff_mix_2_to_1_fltp_flt_sse
);
}
if
(
mm_flags
&
AV_CPU_FLAG_SSE2
&&
HAVE_SSE
)
{
ff_audio_mix_set_func
(
am
,
AV_SAMPLE_FMT_S16P
,
AV_MIX_COEFF_TYPE_FLT
,
2
,
1
,
16
,
8
,
"SSE2"
,
ff_mix_2_to_1_s16p_flt_sse2
);
}
if
(
mm_flags
&
AV_CPU_FLAG_SSE4
&&
HAVE_SSE
)
{
ff_audio_mix_set_func
(
am
,
AV_SAMPLE_FMT_S16P
,
AV_MIX_COEFF_TYPE_FLT
,
2
,
1
,
16
,
8
,
"SSE4"
,
ff_mix_2_to_1_s16p_flt_sse4
);
}
if
(
mm_flags
&
AV_CPU_FLAG_AVX
&&
HAVE_AVX
)
{
ff_audio_mix_set_func
(
am
,
AV_SAMPLE_FMT_FLTP
,
AV_MIX_COEFF_TYPE_FLT
,
2
,
1
,
32
,
16
,
"AVX"
,
ff_mix_2_to_1_fltp_flt_avx
);
...
...
This diff is collapsed.
Click to expand it.
libavresample/x86/util.asm
0 → 100644
+
34
−
0
View file @
c140fb2c
;******************************************************************************
;* x86 utility macros for libavresample
;* Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
;*
;* This file is part of Libav.
;*
;* Libav is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public
;* License as published by the Free Software Foundation; either
;* version 2.1 of the License, or (at your option) any later version.
;*
;* Libav is distributed in the hope that it will be useful,
;* but WITHOUT ANY WARRANTY; without even the implied warranty of
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;* Lesser General Public License for more details.
;*
;* You should have received a copy of the GNU Lesser General Public
;* License along with Libav; if not, write to the Free Software
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%macro S16_TO_S32_SX 2
; src/low dst, high dst
%if cpuflag(sse4)
pmovsxwd
m
%
2
,
m
%
1
psrldq
m
%
1
,
8
pmovsxwd
m
%
1
,
m
%
1
SWAP
%
1
,
%
2
%else
punpckhwd
m
%
2
,
m
%
1
punpcklwd
m
%
1
,
m
%
1
psrad
m
%
2
,
16
psrad
m
%
1
,
16
%endif
%endmacro
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