Commit 6cc270c2 authored by Mike Melanson's avatar Mike Melanson

update the API for the idct function

Originally committed as revision 2895 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a6b9ffbf
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment