diff options
Diffstat (limited to 'gst/mpeg1sys/systems.c')
-rw-r--r-- | gst/mpeg1sys/systems.c | 4 |
1 files changed, 2 insertions, 2 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; } |