Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/audio/common .wav files are little endian.



details:   https://anonhg.NetBSD.org/src/rev/5703745e882d
branches:  trunk
changeset: 467778:5703745e882d
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Mar 29 04:49:49 1999 +0000

description:
.wav files are little endian.

diffstat:

 usr.bin/audio/common/audio.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 281f5e80420f -r 5703745e882d usr.bin/audio/common/audio.c
--- a/usr.bin/audio/common/audio.c      Mon Mar 29 04:39:02 1999 +0000
+++ b/usr.bin/audio/common/audio.c      Mon Mar 29 04:49:49 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.4 1999/03/27 17:46:00 mrg Exp $    */
+/*     $NetBSD: audio.c,v 1.5 1999/03/29 04:49:49 mrg Exp $    */
 
 /*
  * Copyright (c) 1999 Matthew R. Green
@@ -220,7 +220,7 @@
                default:
                        return (AUDIO_EWAVBADPCM);
                }
-               newenc = AUDIO_ENCODING_ULINEAR;;
+               newenc = AUDIO_ENCODING_ULINEAR_LE;
                break;
        case WAVE_FORMAT_ALAW:
                newenc = AUDIO_ENCODING_ALAW;



Home | Main Index | Thread Index | Old Index