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
659094cb
Commit
659094cb
authored
May 28, 2008
by
Vitor Sessak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename variable
Originally committed as revision 13510 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9bf8b562
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ra144.c
libavcodec/ra144.c
+6
-6
No files found.
libavcodec/ra144.c
View file @
659094cb
...
...
@@ -317,7 +317,7 @@ static int ra144_decode_frame(AVCodecContext * avctx,
{
static
const
uint8_t
sizes
[
10
]
=
{
6
,
5
,
5
,
4
,
4
,
3
,
3
,
3
,
3
,
2
};
RA144Context
*
ractx
=
avctx
->
priv_data
;
unsigned
int
gbuf1
[
4
];
unsigned
int
refl_rms
[
4
];
uint16_t
coef_table
[
3
][
30
];
uint16_t
*
gbuf2
[
4
]
=
{
coef_table
[
0
],
coef_table
[
1
],
coef_table
[
2
],
ractx
->
lpc_coef
};
...
...
@@ -343,15 +343,15 @@ static int ra144_decode_frame(AVCodecContext * avctx,
energy
=
decodeval
[
get_bits
(
&
gb
,
5
)
<<
1
];
// Useless table entries?
gbuf1
[
0
]
=
dec2
(
ractx
,
gbuf2
[
0
],
0
,
0
,
ractx
->
old_energy
);
gbuf1
[
1
]
=
dec2
(
ractx
,
gbuf2
[
1
],
1
,
energy
>
ractx
->
old_energy
,
refl_rms
[
0
]
=
dec2
(
ractx
,
gbuf2
[
0
],
0
,
0
,
ractx
->
old_energy
);
refl_rms
[
1
]
=
dec2
(
ractx
,
gbuf2
[
1
],
1
,
energy
>
ractx
->
old_energy
,
t_sqrt
(
energy
*
ractx
->
old_energy
)
>>
12
);
gbuf1
[
2
]
=
dec2
(
ractx
,
gbuf2
[
2
],
2
,
1
,
energy
);
gbuf1
[
3
]
=
rms
(
ractx
->
lpc_refl
,
energy
);
refl_rms
[
2
]
=
dec2
(
ractx
,
gbuf2
[
2
],
2
,
1
,
energy
);
refl_rms
[
3
]
=
rms
(
ractx
->
lpc_refl
,
energy
);
/* do output */
for
(
c
=
0
;
c
<
4
;
c
++
)
{
do_output_subblock
(
ractx
,
gbuf2
[
c
],
gbuf1
[
c
],
data
,
&
gb
);
do_output_subblock
(
ractx
,
gbuf2
[
c
],
refl_rms
[
c
],
data
,
&
gb
);
for
(
i
=
0
;
i
<
BLOCKSIZE
;
i
++
)
{
*
data
=
av_clip_int16
(
*
data
<<
2
);
...
...
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