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
afb40e72
Commit
afb40e72
authored
Jun 24, 2008
by
Vitor Sessak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify interp()
Originally committed as revision 13953 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
74adaa3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
11 deletions
+6
-11
ra144.c
libavcodec/ra144.c
+6
-11
No files found.
libavcodec/ra144.c
View file @
afb40e72
...
...
@@ -301,7 +301,7 @@ static int eval_refl(int *refl, const int16_t *coefs, RA144Context *ractx)
}
static
int
interp
(
RA144Context
*
ractx
,
int16_t
*
out
,
int
block_num
,
int
copy
new
,
int
energy
)
int
copy
old
,
int
energy
)
{
int
work
[
10
];
int
a
=
block_num
+
1
;
...
...
@@ -316,13 +316,8 @@ static int interp(RA144Context *ractx, int16_t *out, int block_num,
if
(
eval_refl
(
work
,
out
,
ractx
))
{
// The interpolated coefficients are unstable, copy either new or old
// coefficients
if
(
copynew
)
{
int_to_int16
(
out
,
ractx
->
lpc_coef
[
0
]);
return
rescale_rms
(
ractx
->
lpc_refl_rms
[
0
],
energy
);
}
else
{
int_to_int16
(
out
,
ractx
->
lpc_coef
[
1
]);
return
rescale_rms
(
ractx
->
lpc_refl_rms
[
1
],
energy
);
}
int_to_int16
(
out
,
ractx
->
lpc_coef
[
copyold
]);
return
rescale_rms
(
ractx
->
lpc_refl_rms
[
copyold
],
energy
);
}
else
{
return
rescale_rms
(
rms
(
work
),
energy
);
}
...
...
@@ -359,10 +354,10 @@ static int ra144_decode_frame(AVCodecContext * avctx, void *vdata,
energy
=
energy_tab
[
get_bits
(
&
gb
,
5
)];
refl_rms
[
0
]
=
interp
(
ractx
,
block_coefs
[
0
],
0
,
0
,
ractx
->
old_energy
);
refl_rms
[
1
]
=
interp
(
ractx
,
block_coefs
[
1
],
1
,
energy
>
ractx
->
old_energy
,
refl_rms
[
0
]
=
interp
(
ractx
,
block_coefs
[
0
],
0
,
1
,
ractx
->
old_energy
);
refl_rms
[
1
]
=
interp
(
ractx
,
block_coefs
[
1
],
1
,
energy
<=
ractx
->
old_energy
,
t_sqrt
(
energy
*
ractx
->
old_energy
)
>>
12
);
refl_rms
[
2
]
=
interp
(
ractx
,
block_coefs
[
2
],
2
,
1
,
energy
);
refl_rms
[
2
]
=
interp
(
ractx
,
block_coefs
[
2
],
2
,
0
,
energy
);
refl_rms
[
3
]
=
rescale_rms
(
ractx
->
lpc_refl_rms
[
0
],
energy
);
int_to_int16
(
block_coefs
[
3
],
ractx
->
lpc_coef
[
0
]);
...
...
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