Home
last modified time | relevance | path

Searched refs:predDCAC_col (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp404 video->predDCAC_col = (typeDCACStore *)(IMEM_predDCAC_col); in PVAllocVideoData()
405 if (video->predDCAC_col == NULL) status = PV_FALSE; in PVAllocVideoData()
407 video->predDCAC_row = video->predDCAC_col + 1; in PVAllocVideoData()
447 video->predDCAC_col = (typeDCACStore *) oscl_malloc((nMBPerRow + 1) * sizeof(typeDCACStore)); in PVAllocVideoData()
448 if (video->predDCAC_col == NULL) status = PV_FALSE; in PVAllocVideoData()
453 video->predDCAC_row = video->predDCAC_col + 1; /* ACDC */ in PVAllocVideoData()
625 video->predDCAC_col = NULL; in PVCleanUpVideoDecoder()
686 if (video->predDCAC_col) oscl_free(video->predDCAC_col); in PVCleanUpVideoDecoder()
Ddcac_prediction.cpp53 typeDCACStore *DCAC_col = video->predDCAC_col; in doDCACPrediction()
224 typeDCACStore *DCAC_col = video->predDCAC_col; in doDCACPrediction_I()
Dmp4lib_int.h219 typeDCACStore *predDCAC_col; member
Dvlc_dequant.cpp63 typeDCACStore *DCAC_col = video->predDCAC_col; in VlcDequantMpegIntraBlock()
514 typeDCACStore *DCAC_col = video->predDCAC_col; in VlcDequantH263IntraBlock()
816 typeDCACStore *DCAC_col = video->predDCAC_col; in VlcDequantH263IntraBlock_SH()
Dcombined_decode.cpp353 typeDCACStore *DCAC_col = video->predDCAC_col; in GetMBheader()
Ddatapart_decode.cpp487 pbyte = (uint8*)(video->predDCAC_col); in DecodeDataPart_P_VideoPacket()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmp4lib_int.h383 typeDCACStore *predDCAC_col; member
Dmp4enc_api.cpp704 …video->predDCAC_col = (typeDCACStore *) M4VENC_MALLOC(((max_width >> 4) + 1) * sizeof(typeDCACStor… in PVInitVideoEncoder()
705 if (video->predDCAC_col == NULL) goto CLEAN_UP; in PVInitVideoEncoder()
709 video->predDCAC_row = video->predDCAC_col + 1; /* ACDC */ in PVInitVideoEncoder()
1177 if (video->predDCAC_col) M4VENC_FREE(video->predDCAC_col); in PVCleanUpVideoEncoder()
Dvlc_encode.cpp2020 typeDCACStore *DCAC_col = video->predDCAC_col; in DCACPred()