Home
last modified time | relevance | path

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

/frameworks/av/media/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp414 video->predDC = (typeDCStore *)(IMEM_predDC); in PVAllocVideoData()
415 if (video->predDC == NULL) status = PV_FALSE; in PVAllocVideoData()
454 video->predDC = (typeDCStore *) oscl_malloc(nTotalMB * sizeof(typeDCStore)); in PVAllocVideoData()
455 if (video->predDC == NULL) status = PV_FALSE; in PVAllocVideoData()
456 else oscl_memset(video->predDC, 0, nTotalMB * sizeof(typeDCStore)); in PVAllocVideoData()
587 video->predDC = NULL; in PVCleanUpVideoDecoder()
644 if (video->predDC) oscl_free(video->predDC); in PVCleanUpVideoDecoder()
Ddatapart_decode.cpp524 typeDCStore *DC = video->predDC + mbnum; in GetMBheaderDataPart_DQUANT_DC()
579 typeDCStore *DC = video->predDC + mbnum; in GetMBheaderDataPart_P()
631 typeDCStore *DC = video->predDC + mbnum; in GetMBData_DataPart()
Ddcac_prediction.cpp51 typeDCStore *DC_store = video->predDC + mbnum; in doDCACPrediction()
222 typeDCStore *DC_store = video->predDC + mbnum; in doDCACPrediction_I()
Dmp4lib_int.h217 typeDCStore *predDC; /* The DC coeffs for each MB */ member
Dvlc_dequant.cpp60 typeDCStore *DC = video->predDC + mbnum; in VlcDequantMpegIntraBlock()
511 typeDCStore *DC = video->predDC + mbnum; in VlcDequantH263IntraBlock()
813 typeDCStore *DC = video->predDC + mbnum; in VlcDequantH263IntraBlock_SH()
Dcombined_decode.cpp351 typeDCStore *DC = video->predDC + mbnum; in GetMBheader()
535 typeDCStore *DC = video->predDC + mbnum;
/frameworks/av/media/codecs/m4v_h263/enc/src/
Dmp4lib_int.h382 typeDCStore *predDC; /* The DC coeffs for each MB */ member
Dmp4enc_api.cpp697 video->predDC = (typeDCStore *) M4VENC_MALLOC(nTotalMB * sizeof(typeDCStore)); in PVInitVideoEncoder()
698 if (video->predDC == NULL) goto CLEAN_UP; in PVInitVideoEncoder()
1176 if (video->predDC) M4VENC_FREE(video->predDC); in PVCleanUpVideoEncoder()
Dvlc_encode.cpp2018 typeDCStore *DC_store = video->predDC + mbnum; in DCACPred()