/** * Part of HEVC Encoder * By Marko Viitanen ( fador at iki.fi ), Tampere University of Technology, Department of Pervasive Computing. */ /*! \file picture.c \brief Functions to handle pictures \author Marko Viitanen \date 2012-06 This file contains all the needed functions to handle pictures */ #include #include #include #include "global.h" #include "picture.h" /** \defgroup picture_group Picture handler group * This group contains all picture related stuff * @{ */ /*! \brief Allocate memory for picture_list \param size initial array size \return picture_list pointer, NULL on failure */ picture_list *picture_list_init(int size) { picture_list *list = (picture_list *)malloc(sizeof(picture_list)); list->size = size; if(size > 0) { list->pics = (picture**)malloc(sizeof(picture*)*size); } list->used_size = 0; return list; } /*! \brief Resize picture_list array \param list picture_list pointer \param size new array size \return 1 on success, 0 on failure */ int picture_list_resize(picture_list *list, int size) { unsigned int i; picture** old_pics = NULL; //No need to do anything when resizing to same size if(size == list->size) { return 1; } //Save the old list if(list->used_size > 0) { old_pics = list->pics; } //allocate space for the new list list->pics = (picture**)malloc(sizeof(picture*)*size); //Copy everything from the old list to the new if needed. if(old_pics != NULL) { for(i = 0; i < list->used_size; i++) { list->pics[i] = old_pics[i]; } free(old_pics); } return 1; } /*! \brief Free memory allocated to the picture_list \param list picture_list pointer \return 1 on success, 0 on failure */ int picture_list_destroy(picture_list *list) { unsigned int i; if(list->used_size > 0) { for(i = 0; i < list->used_size; i++) { picture_destroy(list->pics[i]); } } if(list->size > 0) { free(list->pics); } free(list); return 1; } /*! \brief Free memory allocated to picture \param pic picture pointer \return 1 on success, 0 on failure */ int picture_destroy(picture *pic) { free(pic->uData); free(pic->vData); free(pic->yData); return 1; } /** @} */ // end of group1 #include #define PSNRMAX (255.0*255.0) //Calculates image PSNR value double imagePSNR(uint8_t *frame1, uint8_t *frame2, int32_t x, int32_t y) { int64_t MSE=0; int64_t MSEtemp=0; double psnr=0.0; double pixels = x*y; int32_t index; //Calculate MSE for(index = 0; index < x*y; index++) { MSEtemp=frame1[index]-frame2[index]; MSE+=MSEtemp*MSEtemp; } //Avoid division by zero if(MSE==0) return 99.0; //The PSNR psnr=10*log10(PSNRMAX/((double)MSE/pixels)); //Thats it. return psnr; } uint32_t Hadamard8x8(int16_t *piOrg, int16_t *piCur, int32_t iStrideOrg, int32_t iStrideCur) { int32_t k, i, j, jj, sad=0; int32_t diff[64], m1[8][8], m2[8][8], m3[8][8]; for( k = 0; k < 64; k += 8 ) { diff[k+0] = piOrg[0] - piCur[0]; diff[k+1] = piOrg[1] - piCur[1]; diff[k+2] = piOrg[2] - piCur[2]; diff[k+3] = piOrg[3] - piCur[3]; diff[k+4] = piOrg[4] - piCur[4]; diff[k+5] = piOrg[5] - piCur[5]; diff[k+6] = piOrg[6] - piCur[6]; diff[k+7] = piOrg[7] - piCur[7]; piCur += iStrideCur; piOrg += iStrideOrg; } //horizontal for (j=0; j < 8; j++) { jj = j << 3; m2[j][0] = diff[jj ] + diff[jj+4]; m2[j][1] = diff[jj+1] + diff[jj+5]; m2[j][2] = diff[jj+2] + diff[jj+6]; m2[j][3] = diff[jj+3] + diff[jj+7]; m2[j][4] = diff[jj ] - diff[jj+4]; m2[j][5] = diff[jj+1] - diff[jj+5]; m2[j][6] = diff[jj+2] - diff[jj+6]; m2[j][7] = diff[jj+3] - diff[jj+7]; m1[j][0] = m2[j][0] + m2[j][2]; m1[j][1] = m2[j][1] + m2[j][3]; m1[j][2] = m2[j][0] - m2[j][2]; m1[j][3] = m2[j][1] - m2[j][3]; m1[j][4] = m2[j][4] + m2[j][6]; m1[j][5] = m2[j][5] + m2[j][7]; m1[j][6] = m2[j][4] - m2[j][6]; m1[j][7] = m2[j][5] - m2[j][7]; m2[j][0] = m1[j][0] + m1[j][1]; m2[j][1] = m1[j][0] - m1[j][1]; m2[j][2] = m1[j][2] + m1[j][3]; m2[j][3] = m1[j][2] - m1[j][3]; m2[j][4] = m1[j][4] + m1[j][5]; m2[j][5] = m1[j][4] - m1[j][5]; m2[j][6] = m1[j][6] + m1[j][7]; m2[j][7] = m1[j][6] - m1[j][7]; } //vertical for (i=0; i < 8; i++) { m3[0][i] = m2[0][i] + m2[4][i]; m3[1][i] = m2[1][i] + m2[5][i]; m3[2][i] = m2[2][i] + m2[6][i]; m3[3][i] = m2[3][i] + m2[7][i]; m3[4][i] = m2[0][i] - m2[4][i]; m3[5][i] = m2[1][i] - m2[5][i]; m3[6][i] = m2[2][i] - m2[6][i]; m3[7][i] = m2[3][i] - m2[7][i]; m1[0][i] = m3[0][i] + m3[2][i]; m1[1][i] = m3[1][i] + m3[3][i]; m1[2][i] = m3[0][i] - m3[2][i]; m1[3][i] = m3[1][i] - m3[3][i]; m1[4][i] = m3[4][i] + m3[6][i]; m1[5][i] = m3[5][i] + m3[7][i]; m1[6][i] = m3[4][i] - m3[6][i]; m1[7][i] = m3[5][i] - m3[7][i]; m2[0][i] = m1[0][i] + m1[1][i]; m2[1][i] = m1[0][i] - m1[1][i]; m2[2][i] = m1[2][i] + m1[3][i]; m2[3][i] = m1[2][i] - m1[3][i]; m2[4][i] = m1[4][i] + m1[5][i]; m2[5][i] = m1[4][i] - m1[5][i]; m2[6][i] = m1[6][i] + m1[7][i]; m2[7][i] = m1[6][i] - m1[7][i]; } for (i = 0; i < 8; i++) { for (j = 0; j < 8; j++) { sad += abs(m2[i][j]); } } sad=((sad+2)>>2); return sad; } //Sum of Absolute Difference for block uint32_t SAD(uint8_t *block,uint8_t* block2, uint32_t x, uint32_t y) { uint32_t i; uint32_t sum=0; for(i=0;i