[Mplayer-cvslog] CVS: main/libao2 ao_pcm.c,1.14,1.15
Arpi of Ize
arpi at mplayerhq.hu
Sun Feb 2 17:35:26 CET 2003
Update of /cvsroot/mplayer/main/libao2
In directory mail:/var/tmp.root/cvs-serv11092
Modified Files:
ao_pcm.c
Log Message:
temporary 'inifinte' length disabled (commit r1.13 reversed) due to user
compalints
Index: ao_pcm.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_pcm.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ao_pcm.c 29 Jan 2003 12:22:00 -0000 1.14
+++ ao_pcm.c 2 Feb 2003 16:34:54 -0000 1.15
@@ -51,7 +51,7 @@
static struct WaveHeader wavhdr = {
le2me_32(WAV_ID_RIFF),
/* same conventions than in sox/wav.c/wavwritehdr() */
- le2me_32(0x7ffff024),
+ 0, //le2me_32(0x7ffff024),
le2me_32(WAV_ID_WAVE),
le2me_32(WAV_ID_FMT),
le2me_32(16),
@@ -62,7 +62,7 @@
le2me_16(4),
le2me_16(16),
le2me_32(WAV_ID_DATA),
- le2me_32(0x7ffff000)
+ 0, //le2me_32(0x7ffff000)
};
static FILE *fp = NULL;
More information about the MPlayer-cvslog
mailing list