mirror of https://git.ffmpeg.org/ffmpeg.git
update the API for the idct function
Originally committed as revision 2895 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a6b9ffbfc7
commit
6cc270c2ac
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue