summaryrefslogtreecommitdiff
path: root/libavcodec/mlib
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-03-15 01:21:01 +0000
committerMike Melanson <mike@multimedia.cx>2004-03-15 01:21:01 +0000
commit6cc270c2acba1c236e249ec76f877cf014ee70f5 (patch)
treeec9cf65813c0b236ddb8c7c7c7d04868f6b9fefd /libavcodec/mlib
parenta6b9ffbfc76d0608cb04951c458e21df40463985 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlib/dsputil_mlib.c b/libavcodec/mlib/dsputil_mlib.c
index bbd7a98310..52a01b302c 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);
}