diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/mpeg1sys/systems.c | 4 | ||||
-rw-r--r-- | gst/rtjpeg/RTjpeg.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gst/mpeg1sys/systems.c b/gst/mpeg1sys/systems.c index c0541c5b..6cff5034 100644 --- a/gst/mpeg1sys/systems.c +++ b/gst/mpeg1sys/systems.c @@ -70,7 +70,7 @@ create_sector (sector, pack, sys_header, if (pack != NULL) { i = sizeof (pack->buf); - bcopy (pack->buf, index, i); + memcpy (index, pack->buf, i); index += i; sector->length_of_sector += i; } @@ -84,7 +84,7 @@ create_sector (sector, pack, sys_header, if (which_streams != STREAMS_BOTH) i -= 3; - bcopy (sys_header->buf, index, i); + memcpy (index, sys_header->buf, i); index += i; sector->length_of_sector += i; } diff --git a/gst/rtjpeg/RTjpeg.c b/gst/rtjpeg/RTjpeg.c index f2f61252..eaf8a5ab 100644 --- a/gst/rtjpeg/RTjpeg.c +++ b/gst/rtjpeg/RTjpeg.c @@ -3370,7 +3370,7 @@ RTjpeg_yuvrgb16 (__u8 * buf, __u8 * rgb) void RTjpeg_yuvrgb8 (__u8 * buf, __u8 * rgb) { - bcopy (buf, rgb, RTjpeg_width * RTjpeg_height); + memcpy (rgb, buf, RTjpeg_width * RTjpeg_height); } void |