Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp401 video->predDC = (typeDCStore *)(IMEM_predDC); in PVAllocVideoData()
402 if (video->predDC == NULL) status = PV_FALSE; in PVAllocVideoData()
439 video->predDC = (typeDCStore *) oscl_malloc(nTotalMB * sizeof(typeDCStore)); in PVAllocVideoData()
440 if (video->predDC == NULL) status = PV_FALSE; in PVAllocVideoData()
623 video->predDC = NULL; in PVCleanUpVideoDecoder()
684 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/libstagefright/codecs/m4v_h263/enc/src/
Dmp4lib_int.h381 typeDCStore *predDC; /* The DC coeffs for each MB */ member
Dmp4enc_api.cpp696 video->predDC = (typeDCStore *) M4VENC_MALLOC(nTotalMB * sizeof(typeDCStore)); in PVInitVideoEncoder()
697 if (video->predDC == NULL) goto CLEAN_UP; in PVInitVideoEncoder()
1175 if (video->predDC) M4VENC_FREE(video->predDC); in PVCleanUpVideoEncoder()
Dvlc_encode.cpp2018 typeDCStore *DC_store = video->predDC + mbnum; in DCACPred()