diff options
author | Ka-Ping Yee <ping@zesty.ca> | 2001-01-17 19:31:29 (GMT) |
---|---|---|
committer | Ka-Ping Yee <ping@zesty.ca> | 2001-01-17 19:31:29 (GMT) |
commit | 7dfe6e3264cb81e3b0b7801042ef9a3cdfa9b25e (patch) | |
tree | 8b0680c5020706ae2d9b175acfc5e25b625245ea /Modules/linuxaudiodev.c | |
parent | 3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e (diff) | |
download | cpython-7dfe6e3264cb81e3b0b7801042ef9a3cdfa9b25e.zip cpython-7dfe6e3264cb81e3b0b7801042ef9a3cdfa9b25e.tar.gz cpython-7dfe6e3264cb81e3b0b7801042ef9a3cdfa9b25e.tar.bz2 |
Restore lost AFMT_S16_NE entry.
Diffstat (limited to 'Modules/linuxaudiodev.c')
-rw-r--r-- | Modules/linuxaudiodev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/linuxaudiodev.c b/Modules/linuxaudiodev.c index 13575a5..a0661c5 100644 --- a/Modules/linuxaudiodev.c +++ b/Modules/linuxaudiodev.c @@ -71,6 +71,7 @@ static struct { { 16, AFMT_U16_LE, "linear unsigned 16-bit little-endian audio" }, { 16, AFMT_S16_BE, "linear signed 16-bit big-endian audio" }, { 16, AFMT_S16_LE, "linear signed 16-bit little-endian audio" }, + { 16, AFMT_S16_NE, "linear signed 16-bit native-endian audio" }, }; static int n_audio_types = sizeof(audio_types) / sizeof(audio_types[0]); |