Changeset 735 in SHVCSoftware for branches


Ignore:
Timestamp:
24 Apr 2014, 20:17:15 (11 years ago)
Author:
seregin
Message:

code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r731 r735  
    44034403
    44044404    if(!m_temp)
     4405    {
    44054406      initDs(iWidth, iHeight, m_pcCfg->getIntraPeriod()>1);
     4407    }
    44064408
    44074409    filterImg(pcYuvSrc->getLumaAddr(), pcYuvSrc->getStride(), pcYuvDest->getLumaAddr(), pcYuvDest->getStride(), iHeight, iWidth,  inputBitDepth-outputBitDepth, 0);
     
    44104412  }
    44114413}
    4412 const int TEncGOP::m_phase_filter_0_t0[4][13]={
     4414const Int TEncGOP::m_phase_filter_0_t0[4][13]={
    44134415  {0,  2,  -3,  -9,   6,  39,  58,  39,   6,  -9,  -3,  2,  0}, 
    44144416  {0, 0,  0,  -2,  8,-20, 116, 34, -10,  2,  0, 0,  0},                      //{0,  1,  -1,  -8,  -1,  31,  57,  47,  13,  -7,  -5,  1,  0},  //
     
    44174419};
    44184420
    4419 const int TEncGOP::m_phase_filter_0_t1[4][13]={
     4421const Int TEncGOP::m_phase_filter_0_t1[4][13]={
    44204422  {0,  4,  0,  -12, 0,  40,  64,  40, 0, -12,  0,  4,  0},
    44214423  {0, 0,  0,  -2,  8,-20, 116,34,-10,  2,  0, 0,  0},                      //{0,  1,  -1,  -8,  -1,  31,  57,  47,  13,  -7,  -5,  1,  0},  //
     
    44234425  {0,  0,   1,  -5,  -7,  13,  47,  57,  31,  -1,  -8,-1,  1} 
    44244426};
    4425 const int TEncGOP::m_phase_filter_0_t1_chroma[4][13]={
     4427const Int TEncGOP::m_phase_filter_0_t1_chroma[4][13]={
    44264428  {0,  0,  0,   0,  0,   0,  128, 0,  0,  0,  0,  0,  0},
    44274429  {0, 0,  0,  -2,  8,-20, 116,34,-10,  2,  0, 0,  0},                      //{0,  1,  -1,  -8,  -1,  31,  57,  47,  13,  -7,  -5,  1,  0},  //
     
    44304432};
    44314433
    4432 const int TEncGOP::m_phase_filter_1[8][13]={
     4434const Int TEncGOP::m_phase_filter_1[8][13]={
    44334435  {0,   0,  5,  -6,  -10,37,  76,  37,-10,   -6, 5,  0,   0},   
    44344436  {0,  -1,  5,  -3,  -12,29,  75,  45,  -7,   -8, 5,  0,   0},   
     
    44934495  // pad temp (vertical)
    44944496  for (k=-(length>>1); k<0; k++)
    4495     memcpy(m_temp[k], m_temp[0], width2*sizeof(int));
     4497  {
     4498    memcpy(m_temp[k], m_temp[0], width2*sizeof(Int));
     4499  }
    44964500  for (k=height1; k<(height1+(length>>1)); k++)
    4497     memcpy(m_temp[k], m_temp[k-1], (width2)* sizeof(int));
     4501  {
     4502    memcpy(m_temp[k], m_temp[k-1], (width2)* sizeof(Int));
     4503  }
    44984504
    44994505  // vertical filtering
     
    45164522      }
    45174523      iSum=((iSum + shift_round) >> shift2);
    4518       *p_dst++ = (short)(iSum > iMax ? iMax : (iSum < 0 ? 0 : iSum));
     4524      *p_dst++ = (Short)(iSum > iMax ? iMax : (iSum < 0 ? 0 : iSum));
    45194525    }
    45204526    p_dst_line += iDstStride;
     
    45714577  {
    45724578    if (*array2D)
     4579    {
    45734580      xFree(array2D[-iPadY]-iPadX);
     4581    }
    45744582    else
     4583    {
    45754584      printf("free_mem2DintWithPad: trying to free unused memory\r\nPress Any Key\r\n");
     4585    }
    45764586
    45774587    free (&array2D[-iPadY]);
Note: See TracChangeset for help on using the changeset viewer.