Home
last modified time | relevance | path

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

/external/opencore/codecs_v2/video/m4v_h263/dec/src/
Dpvdec_api.cpp370 video->predDCAC_col = (typeDCACStore *)(IMEM_predDCAC_col); in PVAllocVideoData()
371 if (video->predDCAC_col == NULL) status = PV_FALSE; in PVAllocVideoData()
373 video->predDCAC_row = video->predDCAC_col + 1; in PVAllocVideoData()
406 video->predDCAC_col = (typeDCACStore *) oscl_malloc((nMBPerRow + 1) * sizeof(typeDCACStore)); in PVAllocVideoData()
407 if (video->predDCAC_col == NULL) status = PV_FALSE; in PVAllocVideoData()
412 video->predDCAC_row = video->predDCAC_col + 1; /* ACDC */ in PVAllocVideoData()
574 video->predDCAC_col = NULL; in PVCleanUpVideoDecoder()
635 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.cpp354 typeDCACStore *DCAC_col = video->predDCAC_col; in GetMBheader()
Ddatapart_decode.cpp488 pbyte = (uint8*)(video->predDCAC_col); in DecodeDataPart_P_VideoPacket()
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
Dmp4lib_int.h385 typeDCACStore *predDCAC_col; member
Dmp4enc_api.cpp684 …video->predDCAC_col = (typeDCACStore *) M4VENC_MALLOC(((max_width >> 4) + 1) * sizeof(typeDCACStor… in PVInitVideoEncoder()
685 if (video->predDCAC_col == NULL) goto CLEAN_UP; in PVInitVideoEncoder()
689 video->predDCAC_row = video->predDCAC_col + 1; /* ACDC */ in PVInitVideoEncoder()
1144 if (video->predDCAC_col) M4VENC_FREE(video->predDCAC_col); in PVCleanUpVideoEncoder()
Dvlc_encode.cpp2020 typeDCACStore *DCAC_col = video->predDCAC_col; in DCACPred()