Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
77c8ef9a
Commit
77c8ef9a
authored
Oct 28, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nellymoserdec: use dsp functions for overlap and windowing
parent
8c9581f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
19 deletions
+4
-19
nellymoserdec.c
libavcodec/nellymoserdec.c
+4
-19
No files found.
libavcodec/nellymoserdec.c
View file @
77c8ef9a
...
...
@@ -48,7 +48,7 @@
typedef
struct
NellyMoserDecodeContext
{
AVCodecContext
*
avctx
;
float
*
float_buf
;
float
state
[
NELLY_BUF_LEN
];
DECLARE_ALIGNED
(
16
,
float
,
state
)
[
NELLY_BUF_LEN
];
AVLFG
random_state
;
GetBitContext
gb
;
float
scale_bias
;
...
...
@@ -58,23 +58,6 @@ typedef struct NellyMoserDecodeContext {
DECLARE_ALIGNED
(
32
,
float
,
imdct_out
)[
NELLY_BUF_LEN
*
2
];
}
NellyMoserDecodeContext
;
static
void
overlap_and_window
(
NellyMoserDecodeContext
*
s
,
float
*
state
,
float
*
audio
,
float
*
a_in
)
{
int
bot
,
top
;
bot
=
0
;
top
=
NELLY_BUF_LEN
-
1
;
while
(
bot
<
NELLY_BUF_LEN
)
{
audio
[
bot
]
=
a_in
[
bot
]
*
ff_sine_128
[
bot
]
+
state
[
bot
]
*
ff_sine_128
[
top
];
bot
++
;
top
--
;
}
memcpy
(
state
,
a_in
+
NELLY_BUF_LEN
,
sizeof
(
float
)
*
NELLY_BUF_LEN
);
}
static
void
nelly_decode_block
(
NellyMoserDecodeContext
*
s
,
const
unsigned
char
block
[
NELLY_BLOCK_LEN
],
float
audio
[
NELLY_SAMPLES
])
...
...
@@ -125,7 +108,9 @@ static void nelly_decode_block(NellyMoserDecodeContext *s,
s
->
imdct_ctx
.
imdct_calc
(
&
s
->
imdct_ctx
,
s
->
imdct_out
,
aptr
);
/* XXX: overlapping and windowing should be part of a more
generic imdct function */
overlap_and_window
(
s
,
s
->
state
,
aptr
,
s
->
imdct_out
);
s
->
dsp
.
vector_fmul_reverse
(
s
->
state
,
s
->
state
,
ff_sine_128
,
NELLY_BUF_LEN
);
s
->
dsp
.
vector_fmul_add
(
aptr
,
s
->
imdct_out
,
ff_sine_128
,
s
->
state
,
NELLY_BUF_LEN
);
memcpy
(
s
->
state
,
s
->
imdct_out
+
NELLY_BUF_LEN
,
sizeof
(
float
)
*
NELLY_BUF_LEN
);
}
}
...
...
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