diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-04 00:07:41 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-04 00:07:41 +0000 |
commit | 5a6a9e78ab332bb54bf36761c85609881561149a (patch) | |
tree | d1def9e91601b87d3bead012e48319f9f2a91f1a /libavcodec/dsputil.h | |
parent | ce7f71a2ddf795f451e5acd79fd81f5149e8e87b (diff) | |
download | ffmpeg-5a6a9e78ab332bb54bf36761c85609881561149a.tar.gz |
move draw_edges() into dsputil
Originally committed as revision 12309 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 5fe169eccd..dc930431d8 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -392,6 +392,8 @@ typedef struct DSPContext { #define BASIS_SHIFT 16 #define RECON_SHIFT 6 + void (*draw_edges)(uint8_t *buf, int wrap, int width, int height, int w); + /* h264 functions */ void (*h264_idct_add)(uint8_t *dst, DCTELEM *block, int stride); void (*h264_idct8_add)(uint8_t *dst, DCTELEM *block, int stride); |