diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-03-15 01:21:01 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-03-15 01:21:01 +0000 |
commit | 6cc270c2acba1c236e249ec76f877cf014ee70f5 (patch) | |
tree | ec9cf65813c0b236ddb8c7c7c7d04868f6b9fefd /libavcodec/mlib | |
parent | a6b9ffbfc76d0608cb04951c458e21df40463985 (diff) | |
download | ffmpeg-streaming-6cc270c2acba1c236e249ec76f877cf014ee70f5.zip ffmpeg-streaming-6cc270c2acba1c236e249ec76f877cf014ee70f5.tar.gz |
update the API for the idct function
Originally committed as revision 2895 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlib')
-rw-r--r-- | libavcodec/mlib/dsputil_mlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlib/dsputil_mlib.c b/libavcodec/mlib/dsputil_mlib.c index bbd7a98..52a01b3 100644 --- a/libavcodec/mlib/dsputil_mlib.c +++ b/libavcodec/mlib/dsputil_mlib.c @@ -407,7 +407,7 @@ static void ff_idct_add_mlib(uint8_t *dest, int line_size, DCTELEM *data) mlib_VideoAddBlock_U8_S16(dest, (mlib_s16 *)data, line_size); } -static void ff_idct_mlib(uint8_t *dest, int line_size, DCTELEM *data) +static void ff_idct_mlib(DCTELEM *data) { mlib_VideoIDCT8x8_S16_S16 (data, data); } |