[Mplayer-cvslog] CVS: main/libao2 pl_format.c,1.5,1.6
    Anders Johansson 
    anders at mplayerhq.hu
       
    Fri Aug 23 03:41:28 CEST 2002
    
        - Previous message: [Mplayer-cvslog] CVS: main/loader Makefile,1.9,1.10
- Next message: [Mplayer-cvslog] CVS: main/DOCS cd-dvd.html,1.42,1.43 codecs.html,1.79,1.80 documentation.html,1.294,1.295 faq.html,1.108,1.109 sound.html,1.50,1.51 users_against_developers.html,1.29,1.30 video.html,1.93,1.94
-  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
  
Update of /cvsroot/mplayer/main/libao2
In directory mail:/var/tmp.root/cvs-serv7235
Modified Files:
	pl_format.c 
Log Message:
Fixed *= bug in length calculation
Index: pl_format.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/pl_format.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pl_format.c	30 May 2002 11:53:51 -0000	1.5
+++ pl_format.c	23 Aug 2002 01:41:12 -0000	1.6
@@ -173,7 +173,7 @@
   void* in_data=ao_plugin_data.data;
   void* out_data=pl_format.data;
   int len=(ao_plugin_data.len)>>(pl_format.in&NBITS_MASK);
-  ao_plugin_data.len=(int)(((double)ao_plugin_data.len)*=pl_format.sz_mult);
+  ao_plugin_data.len=(int)(((double)ao_plugin_data.len)*pl_format.sz_mult);
   
   // Change to little endian (Is this true for sun ?)
   if((pl_format.in&END_MASK)!=LE){
    
    
        
	- Previous message: [Mplayer-cvslog] CVS: main/loader Makefile,1.9,1.10
- Next message: [Mplayer-cvslog] CVS: main/DOCS cd-dvd.html,1.42,1.43 codecs.html,1.79,1.80 documentation.html,1.294,1.295 faq.html,1.108,1.109 sound.html,1.50,1.51 users_against_developers.html,1.29,1.30 video.html,1.93,1.94
-  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
More information about the MPlayer-cvslog
mailing list