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
dcfc12e8
Commit
dcfc12e8
authored
Apr 27, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swr-test: simplify prng code
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e5474f5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
swresample_test.c
libswresample/swresample_test.c
+5
-4
No files found.
libswresample/swresample_test.c
View file @
dcfc12e8
...
...
@@ -145,10 +145,11 @@ static void audiogen(void *data, enum AVSampleFormat sample_fmt,
double
tabf1
[
SWR_CH_MAX
];
double
tabf2
[
SWR_CH_MAX
];
double
taba
[
SWR_CH_MAX
];
unsigned
static
see
d
;
unsigned
static
rn
d
;
#define PUT_SAMPLE set(data, ch, k, channels, sample_fmt, v);
#define dbl_rand(x) ((seed = seed * 1664525 + 1013904223)*2.0 / (double)UINT_MAX - 1)
#define uint_rand(x) (x = x * 1664525 + 1013904223)
#define dbl_rand(x) (uint_rand(x)*2.0 / (double)UINT_MAX - 1)
k
=
0
;
/* 1 second of single freq sinus at 1000 Hz */
...
...
@@ -187,8 +188,8 @@ static void audiogen(void *data, enum AVSampleFormat sample_fmt,
/* 1 second of unrelated ramps for each channel */
for
(
ch
=
0
;
ch
<
channels
;
ch
++
)
{
taba
[
ch
]
=
0
;
tabf1
[
ch
]
=
100
+
(
seed
=
seed
*
1664525
+
1013904223
)
%
5000
;
tabf2
[
ch
]
=
100
+
(
seed
=
seed
*
1664525
+
1013904223
)
%
5000
;
tabf1
[
ch
]
=
100
+
uint_rand
(
rnd
)
%
5000
;
tabf2
[
ch
]
=
100
+
uint_rand
(
rnd
)
%
5000
;
}
for
(
i
=
0
;
i
<
1
*
sample_rate
&&
k
<
nb_samples
;
i
++
,
k
++
)
{
for
(
ch
=
0
;
ch
<
channels
;
ch
++
)
{
...
...
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