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.c | |
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.c')
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 63dd940442..a09d19d750 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -369,7 +369,7 @@ static void draw_edges_c(uint8_t *buf, int wrap, int width, int height, int w) * @param w width of the source buffer * @param h height of the source buffer */ -void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize, int block_w, int block_h, +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){ int x, y; int start_y, start_x, end_y, end_x; |