Home
last modified time | relevance | path

Searched refs:bitmaprow (Results 1 – 12 of 12) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dfastquant.cpp150 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz, in BlockQuantDequantH263Inter() argument
177 *bitmaprow = 0; in BlockQuantDequantH263Inter()
259 if (bitmapcol[i])(*bitmaprow) |= tmp; in BlockQuantDequantH263Inter()
263 if (*bitmaprow) in BlockQuantDequantH263Inter()
270 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz, in BlockQuantDequantH263Intra() argument
292 *bitmaprow = 0; in BlockQuantDequantH263Intra()
422 if (bitmapcol[i])(*bitmaprow) |= tmp; in BlockQuantDequantH263Intra()
426 if (((*bitmaprow)&127) || (bitmapcol[0]&127)) /* exclude DC */ in BlockQuantDequantH263Intra()
442 UChar *bitmaprow, UInt *bitmapzz, Int dummy, UChar shortHeader) in BlockQuantDequantH263DCInter() argument
458 *bitmaprow = 0; in BlockQuantDequantH263DCInter()
[all …]
Dfastcodemb.h69 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
73 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
77 UChar *bitmaprow, UInt *bitmapzz, Int dummy);
80 UChar *bitmaprow, UInt *bitmapzz, Int dc_scaler);
83 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
87 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
91 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz, Int dummy);
94 … UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz, Int dc_scaler);
97 void BlockIDCTMotionComp(Int *block, UChar *bitmapcol, UChar bitmaprow,
Dmp4enc_lib.h66 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
70 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
74 … UChar *bitmaprow, UInt *bitmapzz, Int dummy, UChar shortHeader);
77 … UChar *bitmaprow, UInt *bitmapzz, Int dc_scaler, UChar shortHeader);
81 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
85 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
89 … UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz, Int dummy);
92 … UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz, Int dc_scaler);
96 void BlockIDCTMotionComp(Short *block, UChar *bitmapcol, UChar bitmaprow,
Dfastcodemb.cpp55 UChar *bitmapcol, *bitmaprow = video->bitmaprow; in CodeMB_H263() local
206 bitmaprow + k, bitmapzz, dc_scaler, shortHeader); in CodeMB_H263()
234 … bitmapcol, bitmaprow + k, bitmapzz, dctMode, k, dc_scaler, shortHeader); in CodeMB_H263()
236 … BlockIDCTMotionComp(dataBlock, bitmapcol, bitmaprow[k], dctMode, rec, pred, (lx << 1) | intra); in CodeMB_H263()
284 UChar *bitmapcol, *bitmaprow = video->bitmaprow; in CodeMB_MPEG() local
426 bitmapcol, bitmaprow + k, bitmapzz, dc_scaler); in CodeMB_MPEG()
453 … bitmapcol, bitmaprow + k, bitmapzz, dctMode, k, dc_scaler); // in CodeMB_MPEG()
456 … BlockIDCTMotionComp(dataBlock, bitmapcol, bitmaprow[k], dctMode, rec, pred, (lx << 1) | (intra)); in CodeMB_MPEG()
Dfastidct.cpp1857 void BlockIDCTMotionComp(Short *block, UChar *bitmapcol, UChar bitmaprow, in BlockIDCTMotionComp() argument
1871 if (dctMode == 0 || bitmaprow == 0) in BlockIDCTMotionComp()
1915 if (dctMode == 1 || (bitmaprow == 0x80 && bitmapcol[0] == 0x80)) in BlockIDCTMotionComp()
2006 if ((bitmaprow&0xf) == 0) in BlockIDCTMotionComp()
2009 (*(idctrowVCAIntra[(Int)(bitmaprow>>4)]))(block, rec, lx); in BlockIDCTMotionComp()
2011 (*(idctrowVCAzmv[(Int)(bitmaprow>>4)]))(block, rec, pred, lx); in BlockIDCTMotionComp()
Dmp4lib_int.h373 …UChar bitmaprow[8]; /* Need to keep it for ACDCPrediction, 8 bytes for alignment, need onl… member
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dcombined_decode.cpp620 …omp] = VlcDequantH263IntraBlock_SH(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]);
633 switched, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]);
674 …s[comp] = VlcDequantH263InterBlock(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]);
678 mblock->bitmapcol[comp], mblock->bitmaprow[comp]);
704 … ncoeffs[4] = VlcDequantH263InterBlock(video, 4, mblock->bitmapcol[4], &mblock->bitmaprow[4]);
708 mblock->bitmapcol[4], mblock->bitmaprow[4]);
728 … ncoeffs[5] = VlcDequantH263InterBlock(video, 5, mblock->bitmapcol[5], &mblock->bitmaprow[5]);
732 mblock->bitmapcol[5], mblock->bitmaprow[5]);
756 …s[comp] = VlcDequantH263InterBlock(video, comp, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]);
760 mblock->bitmapcol[comp], mblock->bitmaprow[comp]);
[all …]
Dvlc_dequant.cpp51 uint8 *bitmapcol, uint8 *bitmaprow) in VlcDequantMpegIntraBlock() argument
92 *bitmaprow = 0; in VlcDequantMpegIntraBlock()
360 (*bitmaprow) |= mask[k]; in VlcDequantMpegIntraBlock()
384 uint8 *bitmapcol, uint8 *bitmaprow) in VlcDequantMpegInterBlock() argument
408 *bitmaprow = 0; in VlcDequantMpegInterBlock()
483 (*bitmaprow) |= mask[k]; in VlcDequantMpegInterBlock()
503 uint8 *bitmapcol, uint8 *bitmaprow) in VlcDequantH263IntraBlock() argument
541 *bitmaprow = 0; in VlcDequantH263IntraBlock()
794 (*bitmaprow) |= mask[k]; /* (1<<(7-i)); */ in VlcDequantH263IntraBlock()
805 int VlcDequantH263IntraBlock_SH(VideoDecData *video, int comp, uint8 *bitmapcol, uint8 *bitmaprow) in VlcDequantH263IntraBlock_SH() argument
[all …]
Dmp4dec_lib.h96 uint8 *bitmapcol, uint8 bitmaprow);
315 uint8 *bitmapcol, uint8 *bitmaprow);
317 uint8 *bitmapcol, uint8 *bitmaprow);
320 uint8 *bitmapcol, uint8 *bitmaprow);
322 uint8 *bitmapcol, uint8 *bitmaprow);
324 uint8 *bitmapcol, uint8 *bitmaprow);
Ddatapart_decode.cpp685 switched, mblock->bitmapcol[comp], &mblock->bitmaprow[comp]); in GetMBData_DataPart()
726 mblock->bitmapcol[comp], &mblock->bitmaprow[comp]); in GetMBData_DataPart()
732 mblock->bitmapcol[comp], mblock->bitmaprow[comp]); in GetMBData_DataPart()
751 mblock->bitmapcol[4], &mblock->bitmaprow[4]); in GetMBData_DataPart()
756 mblock->bitmapcol[4], mblock->bitmaprow[4]); in GetMBData_DataPart()
771 mblock->bitmapcol[5], &mblock->bitmaprow[5]); in GetMBData_DataPart()
776 mblock->bitmapcol[5], mblock->bitmaprow[5]); in GetMBData_DataPart()
Dblock_idct.cpp262 uint8 bitmaprow = mblock->bitmaprow[comp]; in BlockIDCT_intra() local
298 bitmaprow >>= 4; in BlockIDCT_intra()
299 (*(idctrowVCA2_intra[(int)bitmaprow]))(coeff_in, c_comp, width); in BlockIDCT_intra()
355 uint8 bitmaprow in BlockIDCT() argument
396 (*(idctrowVCA2[bitmaprow>>4]))(coeff_in, pred, dst, width); in BlockIDCT()
Dmp4lib_int.h139 uint8 bitmaprow[6]; member
290 uint8 *bitmaprow, uint8 *bitmapcol);