diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-04 23:10:47 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-04 23:10:47 +0000 |
commit | 288a44fb7a4fb21f9c1e92fc009ad06797ef78d3 (patch) | |
tree | 6664d12a7fd9cee75a5e65df45fb099c16ff9528 /libavcodec/dsputil.h | |
parent | 8d4bef64b4ab7e66cf6ca1fb2bc762103390950a (diff) | |
download | ffmpeg-288a44fb7a4fb21f9c1e92fc009ad06797ef78d3.tar.gz |
move ff_emulated_edge_mc() to dsputil
Originally committed as revision 12318 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index bde3a1cf52..8135688af3 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -168,6 +168,10 @@ typedef struct ScanTable{ void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable); +void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize, + int block_w, int block_h, + int src_x, int src_y, int w, int h); + /** * DSPContext. */ |