diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2011-01-30 01:15:23 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2011-01-30 01:15:23 +0000 |
| commit | 799fc0f103b0d4949a9cec94cc362976fc17d2b2 (patch) | |
| tree | 9ae285cf1ec0df5f0730ae9c00dc46bede01cc79 /apps/plugins/wavrecord.c | |
| parent | 18770dac2e560c88daa3ca9944917be561c3548f (diff) | |
| download | rockbox-799fc0f103b0d4949a9cec94cc362976fc17d2b2.zip rockbox-799fc0f103b0d4949a9cec94cc362976fc17d2b2.tar.gz rockbox-799fc0f103b0d4949a9cec94cc362976fc17d2b2.tar.bz2 rockbox-799fc0f103b0d4949a9cec94cc362976fc17d2b2.tar.xz | |
Fix r29171 red. Forgot to replace a few.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29172 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/wavrecord.c')
| -rw-r--r-- | apps/plugins/wavrecord.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/wavrecord.c b/apps/plugins/wavrecord.c index 90ee1b4..5cdf4fd 100644 --- a/apps/plugins/wavrecord.c +++ b/apps/plugins/wavrecord.c @@ -3217,14 +3217,14 @@ static const struct riff_header header_template = /* format header */ { 'W', 'A', 'V', 'E' }, /* format */ { 'f', 'm', 't', ' ' }, /* format_id */ - H_TO_LE32(16), /* format_size */ + htole32(16), /* format_size */ /* format data */ - H_TO_LE16(1), /* audio_format */ + htole16(1), /* audio_format */ 0, /* num_channels (*) */ 0, /* sample_rate (*) */ 0, /* byte_rate (*) */ 0, /* block_align (*) */ - H_TO_LE16(PCM_DEPTH_BITS), /* bits_per_sample */ + htole16(PCM_DEPTH_BITS), /* bits_per_sample */ /* data header */ { 'd', 'a', 't', 'a' }, /* data_id */ 0 /* data_size (*) */ |