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
b97c4138
Commit
b97c4138
authored
Sep 04, 2008
by
Vitor Sessak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify mace_decode_frame()
Originally committed as revision 15207 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
62c24705
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
mace.c
libavcodec/mace.c
+11
-8
No files found.
libavcodec/mace.c
View file @
b97c4138
...
...
@@ -395,23 +395,26 @@ static int mace_decode_frame(AVCodecContext *avctx,
void
*
data
,
int
*
data_size
,
const
uint8_t
*
buf
,
int
buf_size
)
{
short
*
samples
;
short
*
samples
=
data
;
MACEContext
*
c
=
avctx
->
priv_data
;
int
i
;
samples
=
(
short
*
)
data
;
switch
(
avctx
->
codec
->
id
)
{
case
CODEC_ID_MACE3
:
dprintf
(
avctx
,
"mace_decode_frame[3]()"
);
Exp1to3
(
c
,
buf
,
samples
,
buf_size
/
2
/
avctx
->
channels
,
avctx
->
channels
,
1
);
if
(
avctx
->
channels
==
2
)
Exp1to3
(
c
,
buf
,
samples
+
1
,
buf_size
/
2
/
2
,
2
,
2
);
for
(
i
=
0
;
i
<
avctx
->
channels
;
i
++
)
Exp1to3
(
c
,
buf
,
samples
+
i
,
buf_size
/
2
/
avctx
->
channels
,
avctx
->
channels
,
i
+
1
);
*
data_size
=
2
*
3
*
buf_size
;
break
;
case
CODEC_ID_MACE6
:
dprintf
(
avctx
,
"mace_decode_frame[6]()"
);
Exp1to6
(
c
,
buf
,
samples
,
buf_size
/
avctx
->
channels
,
avctx
->
channels
,
1
);
if
(
avctx
->
channels
==
2
)
Exp1to6
(
c
,
buf
,
samples
+
1
,
buf_size
/
2
,
2
,
2
);
for
(
i
=
0
;
i
<
avctx
->
channels
;
i
++
)
Exp1to6
(
c
,
buf
,
samples
+
i
,
buf_size
/
avctx
->
channels
,
avctx
->
channels
,
i
+
1
);
*
data_size
=
2
*
6
*
buf_size
;
break
;
default:
...
...
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