summaryrefslogtreecommitdiffstats
path: root/libaf/af_format.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-09 01:31:49 +0100
committerwm4 <wm4@nowhere>2012-11-11 17:56:42 +0100
commiteb6688724ceb0e222ccc9f1de6640bfabdd67a43 (patch)
tree99dcbb85b09157415d0aa0fc9d2deb5c6bd90b36 /libaf/af_format.c
parent34649dbd1da2ce07a6e952bec10f52dfae5a257d (diff)
downloadmpv-eb6688724ceb0e222ccc9f1de6640bfabdd67a43.tar.bz2
mpv-eb6688724ceb0e222ccc9f1de6640bfabdd67a43.tar.xz
Replace fast_memcpy() uses
fast_memcpy, defined in fastmemcpy.h, used to be mplayer's "optimized" memcpy. It has been removed from this fork, and fast_memcpy has been reduced to an alias for memcpy. Replace all remaining uses of the fast_memcpy macro alias.
Diffstat (limited to 'libaf/af_format.c')
-rw-r--r--libaf/af_format.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libaf/af_format.c b/libaf/af_format.c
index bdbc9a7c4c..4ac9caaa85 100644
--- a/libaf/af_format.c
+++ b/libaf/af_format.c
@@ -31,7 +31,6 @@
#include "config.h"
#include "af.h"
#include "mpbswap.h"
-#include "libvo/fastmemcpy.h"
/* Functions used by play to convert the input audio to the correct
format */
@@ -295,7 +294,7 @@ static struct mp_audio* play(struct af_instance* af, struct mp_audio* data)
if(c->bps != l->bps)
change_bps(c->audio,l->audio,len,c->bps,l->bps);
else
- fast_memcpy(l->audio,c->audio,len*c->bps);
+ memcpy(l->audio,c->audio,len*c->bps);
break;
}
}