/******************************** Author: Sravanthi Kota Venkata ********************************/ #include #include #include "sdvbs_common.h" F2D* fResetHandle(F2D* out, int rows, int cols) { int i, j; //F2D* out; //out = (F2D*)malloc(sizeof(F2D) + sizeof(float)*rows*cols); out->height = rows; out->width = cols; //printf("fmalloc happened\n"); return out; }