/******************************** Author: Sravanthi Kota Venkata ********************************/ #include "sdvbs_common.h" I2D* iDeepCopyRange(I2D* in, int startRow, int numberRows, int startCol, int numberCols) { int i, j, k; I2D *out; int rows, cols; rows = numberRows + startRow; cols = numberCols + startCol; out = iMallocHandle(numberRows, numberCols); k = 0; for(i=startRow; i