/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | h264bsd_reconstruct.h | 52 u8 *data, 63 u8 *data, 68 u8 *pFill); 72 u8 * ref, 73 u8 * fill, 83 u8 *pRef, 84 u8 *predPartChroma, 94 u8 *pRef, 95 u8 *predPartChroma, 105 u8 *ref, [all …]
|
D | h264bsd_intra_prediction.h | 52 image_t *image, u32 mbNum, u32 constrainedIntraPred, u8 *data); 54 u32 h264bsdIntra4x4Prediction(mbStorage_t *pMb, u8 *data, 56 u8 *above, u8 *left, u32 constrainedIntraPred); 57 u32 h264bsdIntra16x16Prediction(mbStorage_t *pMb, u8 *data, i32 residual[][16], 58 u8 *above, u8 *left, u32 constrainedIntraPred); 60 u32 h264bsdIntraChromaPrediction(mbStorage_t *pMb, u8 *data, i32 residual[][16], 61 u8 *above, u8 *left, u32 predMode, u32 constrainedIntraPred); 63 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum); 67 u32 h264bsdIntra4x4Prediction(mbStorage_t *pMb, u8 *data, 69 u8 *pImage, u32 width, [all …]
|
D | h264bsd_intra_prediction.c | 90 const u8 h264bsdClip[1280] = 162 static void Get4x4NeighbourPels(u8 *a, u8 *l, u8 *data, u8 *above, u8 *left, 164 static void Intra16x16VerticalPrediction(u8 *data, u8 *above); 165 static void Intra16x16HorizontalPrediction(u8 *data, u8 *left); 166 static void Intra16x16DcPrediction(u8 *data, u8 *above, u8 *left, 168 static void Intra16x16PlanePrediction(u8 *data, u8 *above, u8 *left); 169 static void IntraChromaDcPrediction(u8 *data, u8 *above, u8 *left, 171 static void IntraChromaHorizontalPrediction(u8 *data, u8 *left); 172 static void IntraChromaVerticalPrediction(u8 *data, u8 *above); 173 static void IntraChromaPlanePrediction(u8 *data, u8 *above, u8 *left); [all …]
|
D | h264bsd_reconstruct.c | 77 extern const u8 h264bsdClip[]; 109 u8 *pRef, in h264bsdInterpolateChromaHor() 110 u8 *predPartChroma, in h264bsdInterpolateChromaHor() 123 u8 *ptrA, *cbr; in h264bsdInterpolateChromaHor() 125 u8 block[9*8*2]; in h264bsdInterpolateChromaHor() 172 cbr[8] = (u8)c; in h264bsdInterpolateChromaHor() 175 *cbr++ = (u8)c; in h264bsdInterpolateChromaHor() 180 cbr[8] = (u8)c; in h264bsdInterpolateChromaHor() 183 *cbr++ = (u8)c; in h264bsdInterpolateChromaHor() 205 u8 *pRef, in h264bsdInterpolateChromaVer() [all …]
|
D | h264bsd_image.h | 47 u8 *data; 51 u8 *luma; 52 u8 *cb; 53 u8 *cr; 60 void h264bsdWriteMacroblock(image_t *image, u8 *data); 63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
|
D | h264bsd_cavlc.c | 201 static const u8 totalZeros_1_0[32] = { 208 static const u8 totalZeros_1_1[32] = { 214 static const u8 totalZeros_2[64] = { 224 static const u8 totalZeros_3[64] = { 234 static const u8 totalZeros_4[32] = { 240 static const u8 totalZeros_5[32] = { 246 static const u8 totalZeros_6[64] = { 256 static const u8 totalZeros_7[64] = { 266 static const u8 totalZeros_8[64] = { 276 static const u8 totalZeros_9[64] = { [all …]
|
D | h264bsd_deblocking.c | 77 static const u8 alphas[52] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,5,6,7,8,9,10, 82 static const u8 betas[52] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,3,3,3,3,4,4, 90 static const u8 tc0[52][3] = { 102 static const u8 tc0[52][5] = { 127 const u8 *tc0; 146 extern const u8 h264bsdClip[]; 173 static void FilterLuma(u8 *data, bS_t *bS, edgeThreshold_t *thresholds, 176 static void FilterChroma(u8 *cb, u8 *cr, bS_t *bS, edgeThreshold_t *thresholds, 179 static void FilterVerLumaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds, 181 static void FilterHorLumaEdge( u8 *data, u32 bS, edgeThreshold_t *thresholds, [all …]
|
D | h264bsd_image.c | 52 extern const u8 h264bsdClip[]; 80 void h264bsdWriteMacroblock(image_t *image, u8 *data) in h264bsdWriteMacroblock() 171 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data, in h264bsdWriteOutputBlocks() 179 u8 *lum, *cb, *cr; in h264bsdWriteOutputBlocks() 180 u8 *imageBlock; in h264bsdWriteOutputBlocks() 181 u8 *tmp; in h264bsdWriteOutputBlocks() 187 const u8 *clp = h264bsdClip + 512; in h264bsdWriteOutputBlocks() 254 imageBlock[0] = (u8)tmp1; in h264bsdWriteOutputBlocks() 258 imageBlock[1] = (u8)tmp3; in h264bsdWriteOutputBlocks() 262 imageBlock[2] = (u8)tmp1; in h264bsdWriteOutputBlocks() [all …]
|
D | DecTestBench.c | 39 void WriteOutput(char *filename, u8 *data, u32 picSize); 40 u32 NextPacket(u8 **pStrm); 41 u32 CropPicture(u8 *pOutImage, u8 *pInImage, 45 u8 *streamStop = NULL; 88 u8 *byteStrmStart; in main() 89 u8 *imageData; in main() 90 u8 *tmpImage = NULL; in main() 187 byteStrmStart = (u8 *)malloc(sizeof(u8)*strmLen); in main() 195 fread(byteStrmStart, sizeof(u8), strmLen, finput); in main() 336 imageData = (u8*)decPicture.pOutputPicture; in main() [all …]
|
D | EvaluationTestBench.c | 22 void WriteOutput(FILE *fid, u8 *data, u32 picSize); 41 u8 *byteStrmStart; in main() 42 u8 *byteStrm; in main() 88 byteStrm = byteStrmStart = (u8 *)H264SwDecMalloc(sizeof(u8)*strmLen); in main() 96 fread(byteStrm, sizeof(u8), strmLen, finput); in main() 185 WriteOutput(foutput, (u8*)decPicture.pOutputPicture, in main() 228 WriteOutput(foutput, (u8*)decPicture.pOutputPicture, picSize); in main() 261 void WriteOutput(FILE *fid, u8 *data, u32 picSize) in WriteOutput()
|
D | TestBenchMultipleInstance.c | 35 void WriteOutput(FILE *fid, u8 *data, u32 picSize); 37 u32 CropPicture(u8 *pOutImage, u8 *pInImage, 40 void CropWriteOutput(FILE *fid, u8 *imageData, u32 cropDisplay, 52 u8 *byteStrmStart; 162 decoder[i]->byteStrmStart = (u8 *)malloc(sizeof(u8)*strmLen); in main() 168 fread(decoder[i]->byteStrmStart, sizeof(u8), strmLen, finput); in main() 276 (u8*)decoder[i]->decPicture.pOutputPicture, in main() 325 (u8*)decoder[i]->decPicture.pOutputPicture, in main() 351 void CropWriteOutput(FILE *foutput, u8 *imageData, u32 cropDisplay, in CropWriteOutput() 354 u8 *tmpImage = NULL; in CropWriteOutput() [all …]
|
D | h264bsd_macroblock_layer.c | 93 static u32 DetermineNc(mbStorage_t *pMb, u32 blockIndex, u8 *pTotalCoeff); 100 static u32 ProcessIntra4x4Residual(mbStorage_t *pMb, u8 *data, u32 constrainedIntraPred, 101 macroblockLayer_t *mbLayer, const u8 **pSrc, image_t *image); 102 static u32 ProcessChromaResidual(mbStorage_t *pMb, u8 *data, const u8 **pSrc ); 103 static u32 ProcessIntra16x16Residual(mbStorage_t *pMb, u8 *data, u32 constrainedIntraPred, 104 u32 intraChromaPredMode, const u8 **pSrc, image_t *image); 807 u32 DetermineNc(mbStorage_t *pMb, u32 blockIndex, u8 *pTotalCoeff) in DetermineNc() 818 u8 neighbourAindex, neighbourBindex; in DetermineNc() 966 u32 constrainedIntraPredFlag, u8* data) in h264bsdDecodeMacroblock() 974 const u8 *pSrc; in h264bsdDecodeMacroblock() [all …]
|
D | h264bsd_macroblock_layer.h | 142 u8 posCoefBuf[27*16*3]; 143 u8 totalCoeff[27]; 171 u8 totalCoeff[27]; 175 u8 intra4x4PredMode[16]; 177 u8* refAddr[4]; 201 u32 constrainedIntraPredFlag, u8* data);
|
D | h264bsd_dpb.h | 57 u8 *data; /* 16-byte aligned pointer of pAllocatedData */ 58 u8 *pAllocatedData; /* allocated picture pointer; (size + 15) bytes */ 71 u8 *data; 119 u8* h264bsdAllocateDpbImage(dpbStorage_t *dpb); 121 u8* h264bsdGetRefPicData(dpbStorage_t *dpb, u32 index);
|
D | h264bsd_stream.h | 47 u8 *pStrmBuffStart; /* pointer to start of stream buffer */ 48 u8 *pStrmCurrPos; /* current read address in stream buffer */
|
D | h264bsd_util.c | 279 image->luma = (u8*)(image->data + col * 16 + tmp * 256); in h264bsdSetCurrImageMbPointers() 280 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8); in h264bsdSetCurrImageMbPointers() 281 image->cr = (u8*)(image->cb + picSize * 64); in h264bsdSetCurrImageMbPointers()
|
D | h264bsd_byte_stream.c | 80 u32 h264bsdExtractNalUnit(u8 *pByteStream, u32 len, strmData_t *pStrmData, in h264bsdExtractNalUnit() 89 u8 byte; in h264bsdExtractNalUnit() 92 u8 *readPtr, *writePtr; in h264bsdExtractNalUnit()
|
D | h264bsd_decoder.h | 61 u32 h264bsdDecode(storage_t *pStorage, u8 *byteStrm, u32 len, u32 picId, 65 u8* h264bsdNextOutputPicture(storage_t *pStorage, u32 *picId, u32 *isIdrPic,
|
D | h264bsd_conceal.c | 56 u32 sliceType, u8 *data); 131 u8 *refData; in h264bsdConceal() 254 u32 sliceType, u8 *refData) in ConcealMb() 263 u8 *mbPos; in ConcealMb() 264 u8 data[384]; in ConcealMb() 265 u8 *pData; in ConcealMb() 273 u8 fillBuff[32*21 + 15 + 32]; in ConcealMb() 274 u8 *pFill; in ConcealMb()
|
D | h264bsd_sei.h | 100 u8 *ituTT35PayloadByte; 107 u8 *userDataPayloadByte; 214 u8 *reservedSeiMessagePayloadByte;
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsics_neon.S | 57 vmovl.u8 q2, d26 58 vmovl.u8 q3, d27 59 vmovl.u8 q4, d28 60 vmovl.u8 q5, d29 61 vmovl.u8 q6, d30 62 vmovl.u8 q7, d31 126 vmovl.u8 q12, d0 /* R */ 127 vmovl.u8 q13, d1 /* G */ 128 vmovl.u8 q14, d2 /* B */ 129 vmovl.u8 q15, d3 /* A */ [all …]
|
/frameworks/av/services/camera/libcameraservice/camera2/ |
D | ZslProcessor3.cpp | 240 if (entry.data.u8[0] != ANDROID_CONTROL_AE_STATE_CONVERGED && in pushToReprocess() 241 entry.data.u8[0] != ANDROID_CONTROL_AE_STATE_LOCKED) { in pushToReprocess() 243 __FUNCTION__, entry.data.u8[0]); in pushToReprocess() 354 if (entry.count > 0) frameAeState = entry.data.u8[0]; in dumpZslQueue() 406 if (entry.data.u8[0] != ANDROID_CONTROL_AE_STATE_CONVERGED && in getCandidateTimestampLocked() 407 entry.data.u8[0] != ANDROID_CONTROL_AE_STATE_LOCKED) { in getCandidateTimestampLocked() 409 "full capture", __FUNCTION__, entry.data.u8[0]); in getCandidateTimestampLocked()
|
D | Parameters.cpp | 302 switch (availableWhiteBalanceModes.data.u8[i]) { in initialize() 342 availableWhiteBalanceModes.data.u8[i]); in initialize() 364 switch (availableEffects.data.u8[i]) { in initialize() 403 __FUNCTION__, cameraId, availableEffects.data.u8[i]); in initialize() 424 switch (availableAntibandingModes.data.u8[i]) { in initialize() 444 availableAntibandingModes.data.u8[i]); in initialize() 467 switch (availableSceneModes.data.u8[i]) { in initialize() 538 availableSceneModes.data.u8[i]); in initialize() 559 if (flashAvailable.data.u8[0]) { in initialize() 570 if (availableAeModes.data.u8[i] == in initialize() [all …]
|
/frameworks/av/media/mtp/ |
D | MtpProperty.cpp | 73 mDefaultValue.u.u8 = defaultValue; in MtpProperty() 235 mMinimumValue.u.u8 = min; in setFormRange() 236 mMaximumValue.u.u8 = max; in setFormRange() 237 mStepSize.u.u8 = step; in setFormRange() 288 mEnumValues[i].u.u8 = value; in setFormEnum() 373 buffer.appendFormat("%d", value.u.u8); in print() 420 value.u.u8 = packet.getUInt8(); in readValue() 473 packet.putUInt8(value.u.u8); in writeValue()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/ |
D | H264SwDecApi.h | 79 u8 *pStream; /* Pointer to stream to be decoded */ 91 u8 *pStrmCurrPos; /* Pointer to stream position where decoder
|