diff options
author | Peter Ross | 2008-08-06 08:17:03 +0000 |
---|---|---|
committer | Peter Ross | 2008-08-06 08:17:03 +0000 |
commit | 6ba10f338ae8fe06faa1ed830ce07ce036cc2fdc (patch) | |
tree | dd250ac1c3e5c2c7c25acafbc217186346694790 /libavutil/lzo.h | |
parent | c0f0b34bba397e6413e746514054f6fa2439adba (diff) |
Add av_memcpy_backptr(): deliberately overlapping memcpy variant.
Originally committed as revision 14641 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/lzo.h')
-rw-r--r-- | libavutil/lzo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/lzo.h b/libavutil/lzo.h index e7795f7718..6c5e5a31bc 100644 --- a/libavutil/lzo.h +++ b/libavutil/lzo.h @@ -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 */ |