summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/c/fResetHandle.c
blob: da1a8f2c3efee2418d451dbd538f690d66f40a49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/********************************
Author: Sravanthi Kota Venkata
********************************/

#include <stdio.h>
#include <stdlib.h>
#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;
}