我现在需要同时输出640X480和240X320的两个模式,在continuous模式下,如何设置RSZ A输出图像的宽度和高度,我看例子中RSZ B可以设置:
rsz_cont_config.output1.enable = 1;
if (disp_output) {
rsz_cont_config.output2.enable = 1;
rsz_cont_config.output2.width = second_out_width;
rsz_cont_config.output2.height = second_out_height;
if (out_format)
rsz_cont_config.output2.pix_fmt = IPIPE_YUV420SP;
else
rsz_cont_config.output2.pix_fmt = IPIPE_UYVY;
} else
rsz_cont_config.output2.enable = 0;
但是 rsz_cont_config.output1的类型和 rsz_cont_config.output2不同,没有width和height成员,我应该如何去设置?