[FFmpeg-cvslog] r14641 - in trunk/libavutil: lzo.c lzo.h
pross
subversion
Wed Aug 6 10:17:03 CEST 2008
Author: pross
Date: Wed Aug 6 10:17:03 2008
New Revision: 14641
Log:
Add av_memcpy_backptr(): deliberately overlapping memcpy variant.
Modified:
trunk/libavutil/lzo.c
trunk/libavutil/lzo.h
Modified: trunk/libavutil/lzo.c
==============================================================================
--- trunk/libavutil/lzo.c (original)
+++ trunk/libavutil/lzo.c Wed Aug 6 10:17:03 2008
@@ -106,6 +106,8 @@ static inline void copy(LZOContext *c, i
c->out = dst + cnt;
}
+static inline void memcpy_backptr(uint8_t *dst, int back, int cnt);
+
/**
* \brief copy previously decoded bytes to current position
* \param back how many bytes back we start
@@ -125,9 +127,14 @@ static inline void copy_backptr(LZOConte
cnt = FFMAX(c->out_end - dst, 0);
c->error |= LZO_OUTPUT_FULL;
}
+ memcpy_backptr(dst, back, cnt);
+ c->out = dst + cnt;
+}
+
+static inline void memcpy_backptr(uint8_t *dst, int back, int cnt) {
+ const uint8_t *src = &dst[-back];
if (back == 1) {
memset(dst, *src, cnt);
- dst += cnt;
} else {
#ifdef OUTBUF_PADDED
COPY2(dst, src);
@@ -155,9 +162,20 @@ static inline void copy_backptr(LZOConte
}
memcpy(dst, src, cnt);
}
- dst += cnt;
}
- c->out = dst;
+}
+
+/**
+ * \brief deliberately overlapping memcpy implementation
+ * \param dst destination buffer; must be padded with 12 additional bytes
+ * \param back how many bytes back we start (the initial size of the overlapping window)
+ * \param cnt number of bytes to copy, must be >= 0
+ *
+ * cnt > back is valid, this will copy the bytes we just copied,
+ * thus creating a repeating pattern with a period length of back.
+ */
+void av_memcpy_backptr(uint8_t *dst, int back, int cnt) {
+ memcpy_backptr(dst, back, cnt);
}
/**
Modified: trunk/libavutil/lzo.h
==============================================================================
--- trunk/libavutil/lzo.h (original)
+++ trunk/libavutil/lzo.h Wed Aug 6 10:17:03 2008
@@ -32,4 +32,6 @@
int lzo1x_decode(void *out, int *outlen, const void *in, int *inlen);
+void av_memcpy_backptr(uint8_t *dst, int back, int cnt);
+
#endif /* FFMPEG_LZO_H */
More information about the ffmpeg-cvslog
mailing list