Home
last modified time | relevance | path

Searched refs:residual (Results 1 – 15 of 15) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_util.h73 #define MARK_RESIDUAL_EMPTY(residual) ((residual)[0] = EMPTY_RESIDUAL_INDICATOR) argument
75 #define IS_RESIDUAL_EMPTY(residual) ((residual)[0] == EMPTY_RESIDUAL_INDICATOR) argument
Dh264bsd_intra_prediction.c184 void h264bsdAddResidual(u8 *data, i32 *residual, u32 blockNum);
500 tmp = h264bsdIntra16x16Prediction(pMb, data, mbLayer->residual.level, in h264bsdIntraPrediction()
514 mbLayer->residual.level+16, pelAbove + 21, pelLeft + 16, in h264bsdIntraPrediction()
622 u32 h264bsdIntra16x16Prediction(mbStorage_t *pMb, u8 *data, i32 residual[][16], in h264bsdIntra16x16Prediction()
634 ASSERT(residual); in h264bsdIntra16x16Prediction()
678 h264bsdAddResidual(data, residual[i], i); in h264bsdIntra16x16Prediction()
823 h264bsdAddResidual(data, mbLayer->residual.level[block], block); in h264bsdIntra4x4Prediction()
840 u32 h264bsdIntraChromaPrediction(mbStorage_t *pMb, u8 *data, i32 residual[][16], in h264bsdIntraChromaPrediction()
852 ASSERT(residual); in h264bsdIntraChromaPrediction()
899 h264bsdAddResidual(data, residual[i], block); in h264bsdIntraChromaPrediction()
[all …]
Dh264bsd_intra_prediction.h57 u32 h264bsdIntra16x16Prediction(mbStorage_t *pMb, u8 *data, i32 residual[][16],
60 u32 h264bsdIntraChromaPrediction(mbStorage_t *pMb, u8 *data, i32 residual[][16],
Dh264bsd_image.c172 i32 residual[][16]) in h264bsdWriteOutputBlocks()
214 pRes = residual[block]; in h264bsdWriteOutputBlocks()
279 pRes = residual[block]; in h264bsdWriteOutputBlocks()
Dh264bsd_image.h64 i32 residual[][16]);
Dh264bsd_macroblock_layer.c181 level = pMbLayer->residual.level[0]; in h264bsdDecodeMacroblockLayer()
228 tmp = DecodeResidual(pStrmData, &pMbLayer->residual, pMb, in h264bsdDecodeMacroblockLayer()
999 i32 *lev = pMbLayer->residual.level[0]; in h264bsdDecodeMacroblock()
1035 pMbLayer->residual.totalCoeff, in h264bsdDecodeMacroblock()
1048 pSrc = pMbLayer->residual.posCoefBuf; in h264bsdDecodeMacroblock()
1095 tmp = ProcessResidual(pMb, pMbLayer->residual.level, in h264bsdDecodeMacroblock()
1096 pMbLayer->residual.coeffMap); in h264bsdDecodeMacroblock()
Dh264bsd_macroblock_layer.h158 residual_t residual; member
Dh264bsd_inter_prediction.c473 pMbLayer->residual.level); in h264bsdInterPrediction()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
DARM_DELIVERY.TXT29 that it is possible residual defects or errors in operation, consistency
35 damages as a result of encountering one or more of these residual defects.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
DARM_DELIVERY.TXT29 that it is possible residual defects or errors in operation, consistency
35 damages as a result of encountering one or more of these residual defects.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
DARM_DELIVERY.TXT29 that it is possible residual defects or errors in operation, consistency
35 damages as a result of encountering one or more of these residual defects.
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dvlc_decode.h97 PV_STATUS PV_DeScaleMVD(int f_code, int residual, int vlc_code_mag, MOT *vector);
Dvlc_decode.cpp321 int residual, /* <-- part of the MV Diff. FLC coded */ in PV_DeScaleMVD() argument
337 diff_vector = ((PV_ABS(vlc_code_mag) - 1) << (f_code - 1)) + residual + 1; in PV_DeScaleMVD()
/frameworks/av/media/libstagefright/codecs/avc/enc/
DAndroid.mk15 src/residual.cpp \
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dvlc_encode.cpp175 Void ScaleMVD(Int f_code, Int diff_vector, Int *residual, Int *vlc_code_mag);
2734 Int residual, vlc_code_mag, bits, entry; in WriteMVcomponent() local
2736 ScaleMVD(f_code, dmv, &residual, &vlc_code_mag); in WriteMVcomponent()
2747 BitstreamPutBits(bs, f_code - 1, residual); in WriteMVcomponent()
2758 Int *residual, /* --> value to be FLC coded */ in ScaleMVD() argument
2783 *residual = 0; in ScaleMVD()
2788 *residual = 0; in ScaleMVD()
2797 *residual = aux & (scale_factor - 1); in ScaleMVD()