[Mplayer-cvslog] CVS: main/libmpcodecs/native RTjpegN.c,1.4,1.5
Sascha Sommer CVS
faust3 at mplayerhq.hu
Sun Mar 30 22:38:22 CEST 2003
Update of /cvsroot/mplayer/main/libmpcodecs/native
In directory mail:/var/tmp.root/cvs-serv27188/libmpcodecs/native
Modified Files:
RTjpegN.c
Log Message:
bcopy -> memcpy for MINGW32 port
Index: RTjpegN.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/native/RTjpegN.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- RTjpegN.c 7 Jun 2002 22:43:27 -0000 1.4
+++ RTjpegN.c 30 Mar 2003 20:37:54 -0000 1.5
@@ -3795,6 +3795,6 @@
void RTjpeg_yuvrgb8(__u8 *buf, __u8 *rgb, int stride)
{
- bcopy(buf, rgb, RTjpeg_width*RTjpeg_height);
+ memcpy(rgb, buf, RTjpeg_width*RTjpeg_height);
}
More information about the MPlayer-cvslog
mailing list