1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

bcopy -> memcpy for MINGW32 port

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9764 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-03-30 20:37:54 +00:00
parent 316635bb35
commit 19b1db311e

View File

@ -3795,6 +3795,6 @@ void RTjpeg_yuvrgb16(__u8 *buf, __u8 *rgb, int stride)
void RTjpeg_yuvrgb8(__u8 *buf, __u8 *rgb, int stride)
{
bcopy(buf, rgb, RTjpeg_width*RTjpeg_height);
memcpy(rgb, buf, RTjpeg_width*RTjpeg_height);
}