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
656e606c
Commit
656e606c
authored
Dec 19, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adxenc: use BLOCK_SIZE and BLOCK_SAMPLES macros
parent
f1be41c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
adxenc.c
libavcodec/adxenc.c
+5
-5
No files found.
libavcodec/adxenc.c
View file @
656e606c
...
@@ -42,7 +42,7 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
...
@@ -42,7 +42,7 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
int
s0
,
s1
,
s2
,
d
;
int
s0
,
s1
,
s2
,
d
;
int
max
=
0
;
int
max
=
0
;
int
min
=
0
;
int
min
=
0
;
int
data
[
32
];
int
data
[
BLOCK_SAMPLES
];
s1
=
prev
->
s1
;
s1
=
prev
->
s1
;
s2
=
prev
->
s2
;
s2
=
prev
->
s2
;
...
@@ -61,7 +61,7 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
...
@@ -61,7 +61,7 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
prev
->
s2
=
s2
;
prev
->
s2
=
s2
;
if
(
max
==
0
&&
min
==
0
)
{
if
(
max
==
0
&&
min
==
0
)
{
memset
(
adx
,
0
,
18
);
memset
(
adx
,
0
,
BLOCK_SIZE
);
return
;
return
;
}
}
...
@@ -76,7 +76,7 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
...
@@ -76,7 +76,7 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
AV_WB16
(
adx
,
scale
);
AV_WB16
(
adx
,
scale
);
init_put_bits
(
&
pb
,
adx
+
2
,
16
);
init_put_bits
(
&
pb
,
adx
+
2
,
16
);
for
(
i
=
0
;
i
<
32
;
i
++
)
for
(
i
=
0
;
i
<
BLOCK_SAMPLES
;
i
++
)
put_sbits
(
&
pb
,
4
,
av_clip
(
data
[
i
]
/
scale
,
-
8
,
7
));
put_sbits
(
&
pb
,
4
,
av_clip
(
data
[
i
]
/
scale
,
-
8
,
7
));
flush_put_bits
(
&
pb
);
flush_put_bits
(
&
pb
);
}
}
...
@@ -105,7 +105,7 @@ static av_cold int adx_encode_init(AVCodecContext *avctx)
...
@@ -105,7 +105,7 @@ static av_cold int adx_encode_init(AVCodecContext *avctx)
av_log
(
avctx
,
AV_LOG_ERROR
,
"Invalid number of channels
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Invalid number of channels
\n
"
);
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
}
}
avctx
->
frame_size
=
32
;
avctx
->
frame_size
=
BLOCK_SAMPLES
;
avctx
->
coded_frame
=
avcodec_alloc_frame
();
avctx
->
coded_frame
=
avcodec_alloc_frame
();
...
@@ -138,7 +138,7 @@ static int adx_encode_frame(AVCodecContext *avctx, uint8_t *frame,
...
@@ -138,7 +138,7 @@ static int adx_encode_frame(AVCodecContext *avctx, uint8_t *frame,
for
(
ch
=
0
;
ch
<
avctx
->
channels
;
ch
++
)
{
for
(
ch
=
0
;
ch
<
avctx
->
channels
;
ch
++
)
{
adx_encode
(
c
,
dst
,
samples
+
ch
,
&
c
->
prev
[
ch
],
avctx
->
channels
);
adx_encode
(
c
,
dst
,
samples
+
ch
,
&
c
->
prev
[
ch
],
avctx
->
channels
);
dst
+=
18
;
dst
+=
BLOCK_SIZE
;
}
}
return
dst
-
frame
;
return
dst
-
frame
;
}
}
...
...
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