/******************************** Author: Sravanthi Kota Venkata ********************************/ #include #include #include "sdvbs_common.h" UI2D* uiMallocHandle(int rows, int cols) { int i, j; UI2D* out; out = malloc(sizeof(UI2D) + sizeof(unsigned int)*rows*cols); out->height = rows; out->width = cols; printf("uimalloc here\n"); return out; }