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
69f3af95
Commit
69f3af95
authored
Apr 26, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swr-test: remove 0 terminator in layouts for consistency
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b1519102
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
swresample_test.c
libswresample/swresample_test.c
+2
-3
No files found.
libswresample/swresample_test.c
View file @
69f3af95
...
...
@@ -117,7 +117,6 @@ uint64_t layouts[]={
AV_CH_LAYOUT_7POINT0
,
AV_CH_LAYOUT_7POINT1
,
AV_CH_LAYOUT_7POINT1_WIDE
,
0
};
static
void
setup_array
(
uint8_t
*
out
[
SWR_CH_MAX
],
uint8_t
*
in
,
enum
AVSampleFormat
format
,
int
samples
){
...
...
@@ -154,11 +153,11 @@ int main(int argc, char **argv){
out_sample_rate
=
rates
[
osr
];
for
(
in_sample_fmt
=
AV_SAMPLE_FMT_U8
;
in_sample_fmt
<=
AV_SAMPLE_FMT_DBL
;
in_sample_fmt
++
){
for
(
out_sample_fmt
=
AV_SAMPLE_FMT_U8
;
out_sample_fmt
<=
AV_SAMPLE_FMT_DBL
;
out_sample_fmt
++
){
for
(
in_ch_layout_index
=
0
;
layouts
[
in_ch_layout_index
]
;
in_ch_layout_index
++
){
for
(
in_ch_layout_index
=
0
;
in_ch_layout_index
<
FF_ARRAY_ELEMS
(
layouts
)
;
in_ch_layout_index
++
){
int
in_ch_count
;
in_ch_layout
=
layouts
[
in_ch_layout_index
];
in_ch_count
=
av_get_channel_layout_nb_channels
(
in_ch_layout
);
for
(
out_ch_layout_index
=
0
;
layouts
[
out_ch_layout_index
]
;
out_ch_layout_index
++
){
for
(
out_ch_layout_index
=
0
;
out_ch_layout_index
<
FF_ARRAY_ELEMS
(
layouts
)
;
out_ch_layout_index
++
){
int
out_count
,
mid_count
,
out_ch_count
;
out_ch_layout
=
layouts
[
out_ch_layout_index
];
out_ch_count
=
av_get_channel_layout_nb_channels
(
out_ch_layout
);
...
...
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