diff options
author | Chris Rankin <rankincj@yahoo.com> | 2011-09-10 21:11:41 +0100 |
---|---|---|
committer | Chris Rankin <rankincj@yahoo.com> | 2011-09-10 21:11:41 +0100 |
commit | 72d45226cc4b327d61c620cf3c5c8c22e23c9e1f (patch) | |
tree | f907068a396e70eb808f539f0118f7a53c21180e /src | |
parent | 965ea6e948e8648433c507b11f2fa36d20758ee1 (diff) | |
download | xine-lib-72d45226cc4b327d61c620cf3c5c8c22e23c9e1f.tar.gz xine-lib-72d45226cc4b327d61c620cf3c5c8c22e23c9e1f.tar.bz2 |
Use xine's fast memcpy function instead of standard library one.
Diffstat (limited to 'src')
-rw-r--r-- | src/combined/ffmpeg/ff_audio_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/combined/ffmpeg/ff_audio_decoder.c b/src/combined/ffmpeg/ff_audio_decoder.c index 5ff0ce70e..68380c124 100644 --- a/src/combined/ffmpeg/ff_audio_decoder.c +++ b/src/combined/ffmpeg/ff_audio_decoder.c @@ -134,7 +134,7 @@ static void ff_audio_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) /* accumulate init data */ ff_audio_ensure_buffer_size(this, this->size + buf->size); - memcpy(this->buf + this->size, buf->content, buf->size); + xine_fast_memcpy(this->buf + this->size, buf->content, buf->size); this->size += buf->size; if (buf->decoder_flags & BUF_FLAG_FRAME_END) { |