Lines Matching refs:Int

52 const static Int tab_exclude[9][9] =  // [last_loc][curr_loc]
65 const static Int refine_next[8][2] = /* [curr_k][increment] */
76 Int i0, Int j0, Int type_pred, Int fullsearch, Int *hp_guess);
78 Int fullsearch(VideoEncData *video, Vol *currVol, UChar *ref, UChar *cur,
79 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh);
80 Int fullsearchBlk(VideoEncData *video, Vol *currVol, UChar *cent, UChar *cur,
81 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh, Int range);
82 void CandidateSelection(Int *mvx, Int *mvy, Int *num_can, Int imb, Int jmb,
83 VideoEncData *video, Int type_pred);
84 void RasterIntraUpdate(UChar *intraArray, UChar *Mode, Int totalMB, Int numRefresh);
85 void ResetIntraUpdate(UChar *intraArray, Int totalMB);
86 void ResetIntraUpdateRegion(UChar *intraArray, Int start_i, Int rwidth,
87 Int start_j, Int rheight, Int mbwidth, Int mbheight);
89 void MoveNeighborSAD(Int dn[], Int new_loc);
90 Int FindMin(Int dn[]);
104 void CalcThreshold(double pf, double exp_lamda[], Int nrmlz_th[]);
142 Int i, j, comp;
143 Int mbwidth = currVol->nMBPerRow;
144 Int mbheight = currVol->nMBPerCol;
145 Int totalMB = currVol->nTotalMB;
146 Int width = currFrame->pitch;
150 Int FS_en = video->encParams->FullSearch_Enabled;
151 void (*ComputeMBSum)(UChar *, Int, MOT *) = video->functionPointer->ComputeMBSum;
152 void (*ChooseMode)(UChar*, UChar*, Int, Int) = video->functionPointer->ChooseMode;
154 Int numIntra, start_i, numLoop, incr_i;
155 Int mbnum, offset;
157 Int sad8 = 0, sad16 = 0;
158 Int totalSAD = 0; /* average SAD for rate control */
159 Int skip_halfpel_4mv;
160 Int f_code_p, f_code_n, max_mag = 0, min_mag = 0;
161 Int type_pred;
162 Int xh[5] = {0, 0, 0, 0, 0};
163 Int yh[5] = {0, 0, 0, 0, 0}; /* half-pel */
168 Int collect = 0;
174 Int hp_guess = 0;
534 void InitHTFM(VideoEncData *video, HTFM_Stat *htfm_stat, double *newvar, Int *collect)
536 Int i;
537 Int lx = video->currVop->width; // padding
538 Int lx2 = lx << 1;
539 Int lx3 = lx2 + lx;
540 Int rx = video->currVop->pitch;
541 Int rx2 = rx << 1;
542 Int rx3 = rx2 + rx;
544 Int *offset, *offset2;
547 if (((Int)video->numVopsInGOP) % 30 == 1)
651 void CalcThreshold(double pf, double exp_lamda[], Int nrmlz_th[])
653 Int i;
669 nrmlz_th[i] = (Int)(temp[i] * ((i + 1) << 4) + 0.5);
679 Int *offset;
680 Int i;
682 Int width = video->currVop->width;
684 if (((Int)video->numVopsInGOP) % 30 == 1)
743 Int i;
744 Int width = video->currVop->width;
771 Int i0, Int j0, Int type_pred, Int FS_en, Int *hp_guess)
776 Int mbnum = video->mbnum;
777 Int width = video->currVop->width; /* 6/12/01, must be multiple of 16 */
778 Int height = video->currVop->height;
782 Int(*SAD_Macroblock)(UChar*, UChar*, Int, void*) = video->functionPointer->SAD_Macroblock;
783 Int(*SAD_Block)(UChar*, UChar*, Int, Int, void*) = video->functionPointer->SAD_Block;
785 Int range = encParams->SearchRange;
787 Int lx = video->currVop->pitch; /* padding */
788 Int comp;
789 Int i, j, imin, jmin, ilow, ihigh, jlow, jhigh, iorg, jorg;
790 Int d, dmin, dn[9];
792 Int d0;
794 Int k;
795 Int mvx[5], mvy[5], imin0, jmin0;
796 Int num_can, center_again;
797 Int last_loc, new_loc = 0;
798 Int step, max_step = range >> 1;
799 Int next;
1179 Int fullsearch(VideoEncData *video, Vol *currVol, UChar *prev, UChar *cur,
1180 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh)
1182 Int range = video->encParams->SearchRange;
1184 Int i, j, k, l;
1185 Int d, dmin;
1186 Int i0 = *imin; /* current position */
1187 Int j0 = *jmin;
1188 Int(*SAD_Macroblock)(UChar*, UChar*, Int, void*) = video->functionPointer->SAD_Macroblock;
1191 Int lx = video->currVop->pitch; /* with padding */
1193 Int offset = i0 + j0 * lx;
1266 Int fullsearchBlk(VideoEncData *video, Vol *currVol, UChar *cent, UChar *cur,
1267 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh, Int range)
1270 Int i, j, k, l, istart, jstart;
1271 Int d, dmin;
1272 Int lx = video->currVop->pitch; /* with padding */
1273 Int(*SAD_Block)(UChar*, UChar*, Int, Int, void*) = video->functionPointer->SAD_Block;
1352 void CandidateSelection(Int *mvx, Int *mvy, Int *num_can, Int imb, Int jmb,
1353 VideoEncData *video, Int type_pred)
1357 Int mbnum = video->mbnum;
1359 Int mbwidth = currVol->nMBPerRow;
1360 Int mbheight = currVol->nMBPerCol;
1361 Int i, j, same, num1;
1573 void RasterIntraUpdate(UChar *intraArray, UChar *Mode, Int totalMB, Int numRefresh)
1575 Int indx, i;
1611 void ResetIntraUpdate(UChar *intraArray, Int totalMB)
1622 void ResetIntraUpdateRegion(UChar *intraArray, Int start_i, Int rwidth,
1623 Int start_j, Int rheight, Int mbwidth, Int mbheight)
1625 Int indx, j;
1647 void MoveNeighborSAD(Int dn[], Int new_loc)
1649 Int tmp[9];
1721 Int FindMin(Int dn[])
1723 Int min, i;
1724 Int dmin;