Home
last modified time | relevance | path

Searched refs:typeDCACStore (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Ddcac_prediction.cpp52 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in doDCACPrediction()
53 typeDCACStore *DCAC_col = video->predDCAC_col; in doDCACPrediction()
81 oscl_memset(DCAC_col, 0, sizeof(typeDCACStore)); in doDCACPrediction()
85 oscl_memset(DCAC_row, 0, sizeof(typeDCACStore)); in doDCACPrediction()
223 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in doDCACPrediction_I()
224 typeDCACStore *DCAC_col = video->predDCAC_col; in doDCACPrediction_I()
Dmp4lib_int.h194 typedef int16 typeDCACStore[4][8]; typedef
218 typeDCACStore *predDCAC_row;
219 typeDCACStore *predDCAC_col;
Dvlc_dequant.cpp62 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in VlcDequantMpegIntraBlock()
63 typeDCACStore *DCAC_col = video->predDCAC_col; in VlcDequantMpegIntraBlock()
513 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in VlcDequantH263IntraBlock()
514 typeDCACStore *DCAC_col = video->predDCAC_col; in VlcDequantH263IntraBlock()
815 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in VlcDequantH263IntraBlock_SH()
816 typeDCACStore *DCAC_col = video->predDCAC_col; in VlcDequantH263IntraBlock_SH()
Dpvdec_api.cpp48 extern typeDCACStore IMEM_predDCAC_col[QCIF_MB_ROWS+1];
417 video->predDCAC_col = (typeDCACStore *)(IMEM_predDCAC_col); in PVAllocVideoData()
419 video->memoryUsage += ((nMBPerRow + 1) * sizeof(typeDCACStore)); in PVAllocVideoData()
460 || (size_t)(nMBPerRow + 1) > SIZE_MAX / sizeof(typeDCACStore)) { in PVAllocVideoData()
463 video->predDCAC_col = (typeDCACStore *) oscl_malloc((nMBPerRow + 1) * sizeof(typeDCACStore)); in PVAllocVideoData()
465 else oscl_memset(video->predDCAC_col, 0, (nMBPerRow + 1) * sizeof(typeDCACStore)); in PVAllocVideoData()
466 video->memoryUsage += ((nMBPerRow + 1) * sizeof(typeDCACStore)); in PVAllocVideoData()
Dcombined_decode.cpp352 typeDCACStore *DCAC_row = video->predDCAC_row + x_pos; in GetMBheader()
353 typeDCACStore *DCAC_col = video->predDCAC_col; in GetMBheader()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmp4lib_int.h152 typedef Short typeDCACStore[4][8]; typedef
383 typeDCACStore *predDCAC_row;
384 typeDCACStore *predDCAC_col;
Dmp4enc_api.cpp701 if ((size_t)((max_width >> 4) + 1) > SIZE_MAX / sizeof(typeDCACStore)) { in PVInitVideoEncoder()
704 …video->predDCAC_col = (typeDCACStore *) M4VENC_MALLOC(((max_width >> 4) + 1) * sizeof(typeDCACStor… in PVInitVideoEncoder()
Dvlc_encode.cpp2019 typeDCACStore *DCAC_row = video->predDCAC_row; in DCACPred()
2020 typeDCACStore *DCAC_col = video->predDCAC_col; in DCACPred()