From owner-ports-jp@jp.freebsd.org  Wed Dec  8 14:34:53 1999
Received: (from daemon@localhost)
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) id OAA81605;
	Wed, 8 Dec 1999 14:34:53 +0900 (JST)
	(envelope-from owner-ports-jp@jp.FreeBSD.org)
Received: from lily.csce.kyushu-u.ac.jp (lily.csce.kyushu-u.ac.jp [133.5.33.81])
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id OAA81600
	for <ports-jp@jp.freebsd.org>; Wed, 8 Dec 1999 14:34:52 +0900 (JST)
	(envelope-from ysonoda@dontaku.csce.kyushu-u.ac.jp)
Received: from localhost (localhost [127.0.0.1])
	by lily.csce.kyushu-u.ac.jp (8.8.8/8.8.8) with ESMTP id OAA04528
	for <ports-jp@jp.freebsd.org>; Wed, 8 Dec 1999 14:34:45 +0900 (JST)
	(envelope-from ysonoda@dontaku.csce.kyushu-u.ac.jp)
To: ports-jp@jp.freebsd.org
From: SONODA Yoshihide (=?iso-2022-jp?B?GyRCMWBFRBsoQiAbJEI1SDFRGyhC?=)
 <ysonoda@dontaku.csce.kyushu-u.ac.jp>
X-Mailer: Mew version 1.94 on XEmacs 21.1 (Bryce Canyon)
Mime-Version: 1.0
Content-Type: Multipart/Mixed;
 boundary="--Next_Part(Wed_Dec__8_14:29:24_1999_809)--"
Content-Transfer-Encoding: 7bit
Message-Id: <19991208143445R.ysonoda@dontaku.csce.kyushu-u.ac.jp>
Date: Wed, 08 Dec 1999 14:34:45 +0900
X-Dispatcher: imput version 990905(IM130)
Lines: 103
Reply-To: ports-jp@jp.freebsd.org
Precedence: list
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+990727
X-Sequence: ports-jp 8346
Subject: [ports-jp 8346] waveplay patch
Errors-To: owner-ports-jp@jp.freebsd.org
Sender: owner-ports-jp@jp.freebsd.org
X-Originator: ysonoda@dontaku.csce.kyushu-u.ac.jp

----Next_Part(Wed_Dec__8_14:29:24_1999_809)--
Content-Type: Text/Plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit

$B1`ED!w6eBg$G$9!#(B

audio/waveplay $B$,(B FreeBSD/alpha $B$GF0$+$J$$$HJs9p$,$"$C$?$N$G(B
$B%Q%C%A$G$9!#%Q%C%A$NAwIU<T$K$h$l$P$3$NJQ99$G(BOK$B$i$7$$$N$G$9$,!"(B
alpha$B$J$s$F?($C$?;v$b$J$$$N$G!";n$;$kJ}$O%A%'%C%/$*4j$$$7$^$9!#(B

$B%Q%C%A$NCf$KF|K\8l$,F~$C$F$7$^$C$?$N$G$9$,!"$3$l$C$F(B
$B$=$N$^$^(Bsend-pr$B$7$A$c$C$F$$$$$s$G$7$g$&$+!)(B
# tar.gz + uuencode $B$7$F=P$9J}$,$$$$$N$+$J!)(B

---
$B6e=#Bg3XBg3X1!(B $B%7%9%F%`>pJs2J3X8&5f2J(B $B>pJs9)3X@l96(B $B=$;N(B2$BG/(B 
           $B1`ED(B $B5H1Q(B (Sonoda, Yoshihide)
     E-mail: ysonoda@dontaku.csce.kyushu-u.ac.jp
   URL: http://dontaku.csce.kyushu-u.ac.jp/~ysonoda/

----Next_Part(Wed_Dec__8_14:29:24_1999_809)--
Content-Type: Text/Plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=patch-aa

*** wavefmt.h~	Wed Sep  9 14:24:05 1998
--- wavefmt.h	Wed Nov 24 15:05:57 1999
***************
*** 11,33 ****
  /* $B9=B$BNDj5A(B (ref. MS-Windows mmsystem.h) */
  typedef struct tWAVEFORMAT
  {
!     u_short wFormatTag;
!     u_short nChannels;
!     u_long  nSamplesPerSec;
!     u_long  nAvgBytesPerSec;
!     u_short nBlockAlign;
!     u_short wBitsPerSample;
  } WAVEFORMAT, *PWAVEFORMAT;
  
  typedef struct tWAVEFORMATEX
  {
!     u_short wFormatTag;
!     u_short nChannels;
!     u_long  nSamplesPerSec;
!     u_long  nAvgBytesPerSec;
!     u_short nBlockAlign;
!     u_short wBitsPerSample;
!     u_short cbSize;
  } WAVEFORMATEX, *PWAVEFORMATEX;
  
  #endif /* _WAVE_FMT_H_ */
--- 11,33 ----
  /* $B9=B$BNDj5A(B (ref. MS-Windows mmsystem.h) */
  typedef struct tWAVEFORMAT
  {
!     u_int16_t wFormatTag;
!     u_int16_t nChannels;
!     u_int32_t nSamplesPerSec;
!     u_int32_t nAvgBytesPerSec;
!     u_int16_t nBlockAlign;
!     u_int16_t wBitsPerSample;
  } WAVEFORMAT, *PWAVEFORMAT;
  
  typedef struct tWAVEFORMATEX
  {
!     u_int16_t wFormatTag;
!     u_int16_t nChannels;
!     u_int32_t nSamplesPerSec;
!     u_int32_t nAvgBytesPerSec;
!     u_int16_t nBlockAlign;
!     u_int16_t wBitsPerSample;
!     u_int16_t cbSize;
  } WAVEFORMATEX, *PWAVEFORMATEX;
  
  #endif /* _WAVE_FMT_H_ */

----Next_Part(Wed_Dec__8_14:29:24_1999_809)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=patch-ab

*** waveplay.c~	Wed Sep  9 14:24:05 1998
--- waveplay.c	Wed Nov 24 15:11:40 1999
***************
*** 150,156 ****
      {
  	if (!stdin_flag)
              fprintf(stderr, "File name     : %s\n", filename);
!         fprintf(stderr, "Sampling rate : %ld Hz\n", wf.nSamplesPerSec);
          fprintf(stderr, "Bits/Sample   : %d Bits\n", wf.wBitsPerSample);
          fprintf(stderr, "Channels      : %d\n", wf.nChannels);
  	if (!rflag)
--- 150,156 ----
      {
  	if (!stdin_flag)
              fprintf(stderr, "File name     : %s\n", filename);
!         fprintf(stderr, "Sampling rate : %d Hz\n", wf.nSamplesPerSec);
          fprintf(stderr, "Bits/Sample   : %d Bits\n", wf.wBitsPerSample);
          fprintf(stderr, "Channels      : %d\n", wf.nChannels);
  	if (!rflag)

----Next_Part(Wed_Dec__8_14:29:24_1999_809)----
