[MPlayer-dev-eng] Re: 0.90-pre9 today night?

Rémi Guyomarch rguyom at pobox.com
Sun Oct 6 16:02:31 CEST 2002


On Sun, Oct 06, 2002 at 03:41:27PM +0200, Arpi wrote:
> Hi,
> 
> Any objections against releasing pre9 today ?

Yes, "mplayer -ao pcm" crashes. ao_data.format was not set in
ao_pcm.c. Fix attached.

-- 
Rémi
-------------- next part --------------
Index: libao2/ao_pcm.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_pcm.c,v
retrieving revision 1.10
diff -u -r1.10 ao_pcm.c
--- libao2/ao_pcm.c	6 Aug 2002 20:31:48 -0000	1.10
+++ libao2/ao_pcm.c	6 Oct 2002 14:23:23 -0000
@@ -103,6 +103,7 @@
 
 	fp = fopen(ao_outputfilename, "wb");
 
+	ao_data.format = format;
 	ao_data.outburst = 65536;
 
 


More information about the MPlayer-dev-eng mailing list