📄 memalloc.c
字号:
/*!
************************************************************************
* \file memalloc.c
*
* \brief
* Memory allocation and free helper functions
*
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
************************************************************************
*/
#include "global.h"
/*!
************************************************************************
* \brief
* Initialize 2-dimensional top and bottom field to point to the proper
* lines in frame
*
* \par Output:
* memory size in bytes
************************************************************************/
int init_top_bot_planes(imgpel **imgFrame, int rows, int columns, imgpel ***imgTopField, imgpel ***imgBotField)
{
int i;
if((*imgTopField = (imgpel**)calloc((rows>>1) , sizeof(imgpel*))) == NULL)
no_mem_exit("init_top_bot_planes: imgTopField");
if((*imgBotField = (imgpel**)calloc((rows>>1) , sizeof(imgpel*))) == NULL)
no_mem_exit("init_top_bot_planes: imgBotField");
for(i = 0; i < (rows>>1); i++)
{
(*imgTopField)[i] = imgFrame[2*i ];
(*imgBotField)[i] = imgFrame[2*i+1];
}
return rows*sizeof(imgpel*);
}
/*!
************************************************************************
* \brief
* free 2-dimensional top and bottom fields without freeing target memory
*
* \par Output:
* memory size in bytes
************************************************************************/
void free_top_bot_planes(imgpel **imgTopField, imgpel **imgBotField)
{
free (imgTopField);
free (imgBotField);
}
/*!
************************************************************************
* \brief
* Allocate 2D memory array -> LambdaParams array2D[rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************/
int get_mem2Dlm(LambdaParams ***array2D, int dim0, int dim1)
{
int i;
if((*array2D = (LambdaParams**)calloc(dim0, sizeof(LambdaParams*))) == NULL)
no_mem_exit("get_mem2Dlm: array2D");
if((*(*array2D) = (LambdaParams* )calloc(dim0 * dim1,sizeof(LambdaParams ))) == NULL)
no_mem_exit("get_mem2Dlm: array2D");
for(i = 1 ; i < dim0; i++)
(*array2D)[i] = (*array2D)[i-1] + dim1;
return dim0 * dim1 * sizeof(LambdaParams);
}
/*!
************************************************************************
* \brief
* free 2D memory array
* which was allocated with get_mem2Dlm()
************************************************************************
*/
void free_mem2Dlm(LambdaParams **array2D)
{
if (array2D)
{
if (*array2D)
free (*array2D);
else
error ("free_mem2Dlm: trying to free unused memory",100);
free (array2D);
}
else
{
error ("free_mem2Dlm: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* Allocate 2D memory array -> PicMotionParams2 array2D[rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************/
int get_mem2Dmp(PicMotionParams2 ***array2D, int dim0, int dim1)
{
int i;
if((*array2D = (PicMotionParams2**)calloc(dim0, sizeof(PicMotionParams2*))) == NULL)
no_mem_exit("get_mem2Dmv: array2D");
if((*(*array2D) = (PicMotionParams2* )calloc(dim0 * dim1,sizeof(PicMotionParams2 ))) == NULL)
no_mem_exit("get_mem2Dmp: array2D");
for(i = 1 ; i < dim0; i++)
(*array2D)[i] = (*array2D)[i-1] + dim1;
return dim0 * dim1 * sizeof(PicMotionParams2);
}
/*!
************************************************************************
* \brief
* Allocate 3D memory array -> PicMotionParams2 array3D[frames][rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem3Dmp(PicMotionParams2 ****array3D, int dim0, int dim1, int dim2)
{
int i;
if(((*array3D) = (PicMotionParams2***)calloc(dim0,sizeof(PicMotionParams2**))) == NULL)
no_mem_exit("get_mem3Dmp: array3D");
get_mem2Dmp(*array3D, dim0 * dim1, dim2);
for(i = 1; i < dim0; i++)
(*array3D)[i] = (*array3D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * sizeof(PicMotionParams2);
}
/*!
************************************************************************
* \brief
* free 2D memory array
* which was allocated with get_mem2Dmp()
************************************************************************
*/
void free_mem2Dmp(PicMotionParams2 **array2D)
{
if (array2D)
{
if (*array2D)
free (*array2D);
else
error ("free_mem2Dmp: trying to free unused memory",100);
free (array2D);
}
else
{
error ("free_mem2Dmp: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 3D memory array
* which was allocated with get_mem3Dmp()
************************************************************************
*/
void free_mem3Dmp(PicMotionParams2 ***array3D)
{
if (array3D)
{
free_mem2Dmp(*array3D);
free (array3D);
}
else
{
error ("free_mem3Dmp: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* Allocate 2D memory array -> MotionVector array2D[rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************/
int get_mem2Dmv(MotionVector ***array2D, int dim0, int dim1)
{
int i;
if((*array2D = (MotionVector**)calloc(dim0, sizeof(MotionVector*))) == NULL)
no_mem_exit("get_mem2Dmv: array2D");
if((*(*array2D) = (MotionVector* )calloc(dim0 * dim1,sizeof(MotionVector ))) == NULL)
no_mem_exit("get_mem2Dmv: array2D");
for(i = 1 ; i < dim0; i++)
(*array2D)[i] = (*array2D)[i-1] + dim1;
return dim0 * dim1 * sizeof(MotionVector);
}
/*!
************************************************************************
* \brief
* Allocate 3D memory array -> MotionVector array3D[frames][rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem3Dmv(MotionVector ****array3D, int dim0, int dim1, int dim2)
{
int i;
if(((*array3D) = (MotionVector***)calloc(dim0,sizeof(MotionVector**))) == NULL)
no_mem_exit("get_mem3Dmv: array3D");
get_mem2Dmv(*array3D, dim0 * dim1, dim2);
for(i = 1; i < dim0; i++)
(*array3D)[i] = (*array3D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * sizeof(MotionVector);
}
/*!
************************************************************************
* \brief
* Allocate 4D memory array -> MotionVector array3D[dim0][dim1][dim2][dim3]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem4Dmv(MotionVector *****array4D, int dim0, int dim1, int dim2, int dim3)
{
int i;
if(((*array4D) = (MotionVector****)calloc(dim0,sizeof(MotionVector***))) == NULL)
no_mem_exit("get_mem4Dpel: array4D");
get_mem3Dmv(*array4D, dim0 * dim1, dim2, dim3);
for(i = 1; i < dim0; i++)
(*array4D)[i] = (*array4D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * dim3 * sizeof(MotionVector);
}
/*!
************************************************************************
* \brief
* Allocate 5D memory array -> MotionVector array3D[dim0][dim1][dim2][dim3][dim4]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem5Dmv(MotionVector ******array5D, int dim0, int dim1, int dim2, int dim3, int dim4)
{
int i;
if(((*array5D) = (MotionVector*****)calloc(dim0,sizeof(MotionVector****))) == NULL)
no_mem_exit("get_mem5Dpel: array5D");
get_mem4Dmv(*array5D, dim0 * dim1, dim2, dim3, dim4);
for(i = 1; i < dim0; i++)
(*array5D)[i] = (*array5D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * dim3 * dim4 * sizeof(MotionVector);
}
/*!
************************************************************************
* \brief
* free 2D memory array
* which was allocated with get_mem2Dmv()
************************************************************************
*/
void free_mem2Dmv(MotionVector **array2D)
{
if (array2D)
{
if (*array2D)
free (*array2D);
else
error ("free_mem2Dmv: trying to free unused memory",100);
free (array2D);
}
else
{
error ("free_mem2Dmv: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 3D memory array
* which was allocated with get_mem3Dmv()
************************************************************************
*/
void free_mem3Dmv(MotionVector ***array3D)
{
if (array3D)
{
free_mem2Dmv(*array3D);
free (array3D);
}
else
{
error ("free_mem3Dmv: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 4D memory array
* which was allocated with get_mem4Dmv()
************************************************************************
*/
void free_mem4Dmv(MotionVector ****array4D)
{
if (array4D)
{
free_mem3Dmv(*array4D);
free (array4D);
}
else
{
error ("free_mem4Dmv: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 5D memory array
* which was allocated with get_mem5Dmv()
************************************************************************
*/
void free_mem5Dmv(MotionVector *****array5D)
{
if (array5D)
{
free_mem4Dmv(*array5D);
free (array5D);
}
else
{
error ("free_mem5Dmv: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* Allocate 2D memory array -> imgpel array2D[rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************/
int get_mem2Dpel(imgpel ***array2D, int dim0, int dim1)
{
int i;
if((*array2D = (imgpel**)calloc(dim0, sizeof(imgpel*))) == NULL)
no_mem_exit("get_mem2Dpel: array2D");
if((*(*array2D) = (imgpel* )calloc(dim0 * dim1,sizeof(imgpel ))) == NULL)
no_mem_exit("get_mem2Dpel: array2D");
for(i = 1 ; i < dim0; i++)
(*array2D)[i] = (*array2D)[i-1] + dim1;
return dim0 * dim1 * sizeof(imgpel);
}
/*!
************************************************************************
* \brief
* Allocate 3D memory array -> imgpel array3D[frames][rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem3Dpel(imgpel ****array3D, int dim0, int dim1, int dim2)
{
int i;
if(((*array3D) = (imgpel***)calloc(dim0,sizeof(imgpel**))) == NULL)
no_mem_exit("get_mem3Dpel: array3D");
get_mem2Dpel(*array3D, dim0 * dim1, dim2);
for(i = 1; i < dim0; i++)
(*array3D)[i] = (*array3D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * sizeof(imgpel);
}
/*!
************************************************************************
* \brief
* Allocate 4D memory array -> imgpel array4D[sub_x][sub_y][rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem4Dpel(imgpel *****array4D, int dim0, int dim1, int dim2, int dim3)
{
int i;
if(((*array4D) = (imgpel****)calloc(dim0, sizeof(imgpel***))) == NULL)
no_mem_exit("get_mem4Dpel: array4D");
get_mem3Dpel(*array4D, dim0 * dim1, dim2, dim3);
for(i = 1; i < dim0; i++)
(*array4D)[i] = (*array4D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * dim3 * sizeof(imgpel);
}
/*!
************************************************************************
* \brief
* Allocate 5D memory array -> imgpel array5D[dims][sub_x][sub_y][rows][columns]
*
* \par Output:
* memory size in bytes
************************************************************************
*/
int get_mem5Dpel(imgpel ******array5D, int dim0, int dim1, int dim2, int dim3, int dim4)
{
int i;
if(((*array5D) = (imgpel*****)calloc(dim0, sizeof(imgpel****))) == NULL)
no_mem_exit("get_mem5Dpel: array5D");
get_mem4Dpel(*array5D, dim0 * dim1, dim2, dim3, dim4);
for(i = 1; i < dim0; i++)
(*array5D)[i] = (*array5D)[i - 1] + dim1;
return dim0 * dim1 * dim2 * dim3 * dim4 * sizeof(imgpel);
}
/*!
************************************************************************
* \brief
* free 2D memory array
* which was allocated with get_mem2Dpel()
************************************************************************
*/
void free_mem2Dpel(imgpel **array2D)
{
if (array2D)
{
if (*array2D)
free (*array2D);
else
error ("free_mem2Dpel: trying to free unused memory",100);
free (array2D);
}
else
{
error ("free_mem2Dpel: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 3D memory array
* which was allocated with get_mem3Dpel()
************************************************************************
*/
void free_mem3Dpel(imgpel ***array3D)
{
if (array3D)
{
free_mem2Dpel(*array3D);
free (array3D);
}
else
{
error ("free_mem3Dpel: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 4D memory array
* which was allocated with get_mem4Dpel()
************************************************************************
*/
void free_mem4Dpel(imgpel ****array4D)
{
if (array4D)
{
free_mem3Dpel(*array4D);
free (array4D);
}
else
{
error ("free_mem4Dpel: trying to free unused memory",100);
}
}
/*!
************************************************************************
* \brief
* free 5D memory array
* which was allocated with get_mem5Dpel()
************************************************************************
*/
void free_mem5Dpel(imgpel *****array5D)
{
if (array5D)
{
free_mem4Dpel(*array5D);
free (array5D);
}
else
{
error ("free_mem5Dpel: trying to free unused memory",100);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -