VUYA
thank having replay.
i'm going make ae plug-in work on premiere pro.
i find @ sdk_noise sample(ae sdk sample), renewed part of "render" function follows
and carried out.
but,
in case of "src ①", noise_param.u.ld.data "argb" format,
in case of "src ②", noise_param.u.ld.data "vuya" format.
why formats different "src ①" , "src ②" ?
****************************************************************
static pf_err
render (
pf_indata *in_datap,
pf_outdata *out_data,
pf_paramdef *params[],
pf_layerdef *output )
{
・・・
else if (destinationpixelformat == prpixelformat_vuya_4444_8u)
{
pf_paramdef noise_param;
aefx_clr_struct(noise_param);
err(pf_checkout_param( in_datap,
0,
in_datap->current_time,
in_datap->time_step,
in_datap->time_scale,
&noise_param));
err(suites.iterate8suite1()->iterate( in_datap,
0,
linesl,
&noise_param.u.ld, // src ①
//&params[noise_input]->u.ld, // src ②
null,
(void*)&nip,
filterimagevuya_8u,
output));
err(pf_checkin_param(in_datap, &noise_param));
・・・
}
****************************************************************
it dependant on source footage format.
More discussions in After Effects SDK
adobe
Comments
Post a Comment