Dear all:
I am using DM368ipnc, now I want to use 320x240 input and 640x480 output
first, I modify avserverui.c
config->displayConfig.width = 640;
config->displayConfig.height = 480; and
config->captureConfig[i].width = 320; //hirain_video
config->captureConfig[i].height = 240;
it will show as follow
now I want to do some algorithm using 320x240 data and then fill to full screen (640x480)
according to VPBE spec, it can use window zoom to make it become x2 for height and width
so I modify davinci_display.c=>davinci_disp_calculate_scale_factor()
layer_info->h_zoom = ZOOM_X2;
layer_info->v_zoom = ZOOM_X2;
but the output video is strange such as follow
Can anyone give me some advise?