summaryrefslogtreecommitdiff
path: root/dxr3syncbuffer.c
diff options
context:
space:
mode:
authorscop <scop>2005-05-17 20:26:00 +0000
committerscop <scop>2005-05-17 20:26:00 +0000
commit9baae216f02485ac6b0b1c4df122e2c75ac75b4a (patch)
tree46379fee8c98f8ad56d77df8aeab5eccff453cd5 /dxr3syncbuffer.c
parentdb76939b99be30bb77a14b38ace07a5774c30c96 (diff)
downloadvdr-plugin-dxr3-9baae216f02485ac6b0b1c4df122e2c75ac75b4a.tar.gz
vdr-plugin-dxr3-9baae216f02485ac6b0b1c4df122e2c75ac75b4a.tar.bz2
Remove optimized memcpy stuff.
Diffstat (limited to 'dxr3syncbuffer.c')
-rw-r--r--dxr3syncbuffer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dxr3syncbuffer.c b/dxr3syncbuffer.c
index d7fe170..4569222 100644
--- a/dxr3syncbuffer.c
+++ b/dxr3syncbuffer.c
@@ -27,7 +27,6 @@
#include <unistd.h>
#include "dxr3syncbuffer.h"
-#include "dxr3memcpy.h"
const int DXR3_MAX_VIDEO_FRAME_LENGTH = 4096;
const int DXR3_MAX_AUDIO_FRAME_LENGTH = 4096;
@@ -80,7 +79,7 @@ void cFixedLengthFrame::CopyFrame(const uint8_t* pStart, int length,
m_type = type;
m_count = length;
m_pts = pts;
- dxr3_memcpy((void*) m_pData, (void*) pStart, length);
+ memcpy((void*) m_pData, (void*) pStart, length);
}
// ==================================