Lines Matching refs:Int

50 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[])
52 Int sad, k, CBP, mbnum = video->mbnum;
58 Int dc_scaler = 8;
59 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q);
61 Int dctMode, DctTh1;
62 Int ColTh;
63 Int(*BlockQuantDequantH263)(Short *, Short *, struct QPstruct *,
64 UChar[], UChar *, UInt *, Int, Int, Int, UChar);
65 Int(*BlockQuantDequantH263DC)(Short *, Short *, struct QPstruct *,
66 UChar *, UInt *, Int, UChar);
67 void (*BlockDCT1x1)(Short *, UChar *, UChar *, Int);
68 void (*BlockDCT2x2)(Short *, UChar *, UChar *, Int);
69 void (*BlockDCT4x4)(Short *, UChar *, UChar *, Int);
70 void (*BlockDCT8x8)(Short *, UChar *, UChar *, Int);
75 Int ind_x = video->outputMB->mb_x;
76 Int ind_y = video->outputMB->mb_y;
77 Int lx = currVop->pitch;
78 Int width = currVop->width;
80 Int offset = QP >> 5; /* QP is combined offset and QP */
81 Int offsetc = (offset >> 2) + (ind_x << 2); /* offset for chrom */
113 DctTh1 = (Int)(dc_scaler * 3);//*1.829
126 DctTh1 = (Int)(16 * QP); //9*QP;
175 DctTh1 = (Int)(dc_scaler * 3);//*1.829
279 PV_STATUS CodeMB_MPEG(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[])
281 Int sad, k, CBP, mbnum = video->mbnum;
286 Int dc_scaler = 8;
288 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q);
289 Int *qmat;
290 Int dctMode, DctTh1, DctTh2, DctTh3, DctTh4;
291 Int ColTh;
293 Int(*BlockQuantDequantMPEG)(Short *, Short *, Int, Int *,
294 UChar [], UChar *, UInt *, Int, Int, Int);
295 Int(*BlockQuantDequantMPEGDC)(Short *, Short *, Int, Int *,
296 UChar [], UChar *, UInt *, Int);
298 void (*BlockDCT1x1)(Short *, UChar *, UChar *, Int);
299 void (*BlockDCT2x2)(Short *, UChar *, UChar *, Int);
300 void (*BlockDCT4x4)(Short *, UChar *, UChar *, Int);
301 void (*BlockDCT8x8)(Short *, UChar *, UChar *, Int);
306 Int ind_x = video->outputMB->mb_x;
307 Int ind_y = video->outputMB->mb_y;
308 Int lx = currVop->pitch;
309 Int width = currVop->width;
311 Int offset = QP >> 5;
312 Int offsetc = (offset >> 2) + (ind_x << 2); /* offset for chrom */
333 DctTh1 = (Int)(3 * dc_scaler);//2*dc_scaler);
334 DctTh2 = (Int)((1.25 * QP - 1) * qmat[1] * 0.45);//0.567);//0.567);
335 DctTh3 = (Int)((1.25 * QP - 1) * qmat[2] * 0.55);//1.162); /* 8/2/2001 */
336 DctTh4 = (Int)((1.25 * QP - 1) * qmat[32] * 0.8);//1.7583);//0.7942);
349 DctTh1 = (Int)(((QP << 1) - 0.5) * qmat[0] * 0.4);//0.2286);//0.3062);
350 DctTh2 = (Int)(((QP << 1) - 0.5) * qmat[1] * 0.45);//0.567);//0.4);
351 DctTh3 = (Int)(((QP << 1) - 0.5) * qmat[2] * 0.55);//1.162); /* 8/2/2001 */
352 DctTh4 = (Int)(((QP << 1) - 0.5) * qmat[32] * 0.8);//1.7583);//0.7942);
484 Int getBlockSAV(Short block[])
486 Int i, val, sav = 0;
533 Int Sad8x8(UChar *cur, UChar *prev, Int width)
536 Int sad = 0;
537 Int *curInt = (Int*) cur;
538 Int *prevInt = (Int*) prev;
539 Int cur1, cur2, prev1, prev2;
541 Int sum2 = 0, sum4 = 0;
542 Int tmp;
599 Int getBlockSum(UChar *cur, Int width)
601 Int sad = 0, sum4 = 0, sum2 = 0;
603 Int *curInt = (Int*)cur;
605 Int load1, load2;