diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
| commit | f7813a5324be39d13ab536c245d15dfc602a7849 (patch) | |
| tree | fad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/tests/audiogen.c | |
| parent | b7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff) | |
basic type mechanism working
Diffstat (limited to 'ffmpeg/tests/audiogen.c')
| -rw-r--r-- | ffmpeg/tests/audiogen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg/tests/audiogen.c b/ffmpeg/tests/audiogen.c index 09cf429..e705061 100644 --- a/ffmpeg/tests/audiogen.c +++ b/ffmpeg/tests/audiogen.c @@ -48,7 +48,7 @@ static unsigned int myrnd(unsigned int *seed_ptr, int n) #define COS_TABLE_BITS 7 -/* integer cosinus */ +/* integer cosine */ static const unsigned short cos_table[(1 << COS_TABLE_BITS) + 2] = { 0x8000, 0x7ffe, 0x7ff6, 0x7fea, 0x7fd9, 0x7fc2, 0x7fa7, 0x7f87, 0x7f62, 0x7f38, 0x7f0a, 0x7ed6, 0x7e9d, 0x7e60, 0x7e1e, 0x7dd6, @@ -180,7 +180,7 @@ int main(int argc, char **argv) if ((ext = strrchr(argv[1], '.')) != NULL && !strcmp(ext, ".wav")) put_wav_header(sample_rate, nb_channels, 6 * sample_rate); - /* 1 second of single freq sinus at 1000 Hz */ + /* 1 second of single freq sine at 1000 Hz */ a = 0; for (i = 0; i < 1 * sample_rate; i++) { v = (int_cos(a) * 10000) >> FRAC_BITS; |
