mirror of
https://github.com/mpv-player/mpv
synced 2025-03-25 04:38:01 +00: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:
parent
316635bb35
commit
19b1db311e
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user