diff options
author | David Conrad <lessen42@gmail.com> | 2010-05-27 04:39:27 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-05-27 04:39:27 +0000 |
commit | 910b9f30c84fd62866b8db603150f25b543a52c1 (patch) | |
tree | 8b460e6dcaa92ce4c24e5d266dfd36faef850849 /libavcodec/dsputil.h | |
parent | 94b303ba08d75ee748721dd86579d101cc194b7e (diff) | |
download | ffmpeg-910b9f30c84fd62866b8db603150f25b543a52c1.tar.gz |
Add const to ff_emulated_edge_mc
Originally committed as revision 23348 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index fd2d07f6e6..d943b84929 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -197,7 +197,7 @@ 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, +void ff_emulated_edge_mc(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h, int src_x, int src_y, int w, int h); |