HomeSort by relevance Sort by last modified time
    Searched refs:headerInfo (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 65 video->headerInfo.CBP[mbnum] = 0;
94 if (video->headerInfo.Mode[mbnum] & INTER_MASK)
100 video->headerInfo.Mode[mbnum] = MODE_SKIPPED;
125 video->headerInfo.Mode[i] = MODE_SKIPPED;
datapart_decode.cpp 141 uint8 *Mode = video->headerInfo.Mode;
174 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3);
254 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
306 uint8 *Mode = video->headerInfo.Mode;
441 video->headerInfo.CBP[mbnum] |= (uint8)(CBPY << 2);
522 uint8 *Mode = video->headerInfo.Mode;
578 uint8 *Mode = video->headerInfo.Mode;
608 video->headerInfo.CBP[mbnum] = (uint8)((MCBPC >> 4) & 3);
628 uint CBP = video->headerInfo.CBP[mbnum];
629 uint8 mode = video->headerInfo.Mode[mbnum]
    [all...]
pvdec_api.cpp 373 video->headerInfo.Mode = (uint8 *)(IMEM_headerInfo_Mode);
374 if (video->headerInfo.Mode == NULL) status = PV_FALSE;
376 video->headerInfo.CBP = (uint8 *)(IMEM_headerInfo_CBP);
377 if (video->headerInfo.CBP == NULL) status = PV_FALSE;
413 /* Allocating HeaderInfo structure & Quantizer array */
414 video->headerInfo.Mode = (uint8 *) oscl_malloc(nTotalMB);
415 if (video->headerInfo.Mode == NULL) status = PV_FALSE;
417 video->headerInfo.CBP = (uint8 *) oscl_malloc(nTotalMB);
418 if (video->headerInfo.CBP == NULL) status = PV_FALSE;
574 video->headerInfo.Mode = NULL
    [all...]
combined_decode.cpp 50 uint8 *Mode = video->headerInfo.Mode;
349 uint8 *Mode = video->headerInfo.Mode;
462 video->headerInfo.CBP[mbnum] = (uint8)(CBPY << 2 | (CBPC & 3));
533 uint mode = video->headerInfo.Mode[mbnum];
534 uint CBP = video->headerInfo.CBP[mbnum];
dcac_prediction.cpp 79 if (!comp && x_pos && !(video->headerInfo.Mode[mbnum-1]&INTRA_MASK)) /* not intra */
83 if (!comp && y_pos && !(video->headerInfo.Mode[mbnum-nMBPerRow]&INTRA_MASK)) /* not intra */
226 uint8 *mode = video->headerInfo.Mode;
mp4lib_int.h 227 HeaderInfoDecVideo headerInfo; /* MB Header information */
  /frameworks/base/drm/common/
DrmEngineBase.cpp 137 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) {
138 return onInitializeDecryptUnit(uniqueId, decryptHandle, decryptUnitId, headerInfo);
IDrmManagerService.cpp 659 int decryptUnitId, const DrmBuffer* headerInfo) {
670 data.writeInt32(headerInfo->length);
671 data.write(headerInfo->data, headerInfo->length);
    [all...]
  /frameworks/base/drm/libdrmframework/include/
DrmManagerService.h 108 int decryptUnitId, const DrmBuffer* headerInfo);
IDrmManagerService.h 149 int decryptUnitId, const DrmBuffer* headerInfo) = 0;
232 int decryptUnitId, const DrmBuffer* headerInfo);
DrmManager.h 121 int decryptUnitId, const DrmBuffer* headerInfo);
DrmManagerClientImpl.h 334 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
339 int decryptUnitId, const DrmBuffer* headerInfo);
  /frameworks/base/drm/libdrmframework/plugins/common/include/
IDrmEngine.h 357 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
362 int decryptUnitId, const DrmBuffer* headerInfo) = 0;
DrmEngineBase.h 91 int decryptUnitId, const DrmBuffer* headerInfo);
408 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
413 int decryptUnitId, const DrmBuffer* headerInfo) = 0;
  /frameworks/base/drm/libdrmframework/plugins/passthru/include/
DrmPassthruPlugIn.h 85 int decryptUnitId, const DrmBuffer* headerInfo);
  /frameworks/base/include/drm/
DrmManagerClient.h 124 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
129 sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo);
  /frameworks/base/drm/drmserver/
DrmManagerService.cpp 236 int decryptUnitId, const DrmBuffer* headerInfo) {
238 return mDrmManager->initializeDecryptUnit(uniqueId,decryptHandle, decryptUnitId, headerInfo);
  /frameworks/base/drm/libdrmframework/
DrmManagerClient.cpp 132 sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) {
134 mUniqueId, decryptHandle, decryptUnitId, headerInfo);
DrmManagerClientImpl.cpp 283 int decryptUnitId, const DrmBuffer* headerInfo) {
285 if ((NULL != decryptHandle.get()) && (NULL != headerInfo)) {
287 uniqueId, decryptHandle.get(), decryptUnitId, headerInfo);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 891 UChar Mode = video->headerInfo.Mode[video->mbnum];
906 CBP = video->headerInfo.CBP[mbnum];
980 UChar Mode = video->headerInfo.Mode[mbnum];
1009 CBP = video->headerInfo.CBP[mbnum];
1029 Mode = video->headerInfo.Mode[video->mbnum] = MODE_SKIPPED;
1034 Mode = video->headerInfo.Mode[video->mbnum] = MODE_SKIPPED;
    [all...]
datapart_encode.cpp 216 UChar mode, *Mode = video->headerInfo.Mode;
363 CBP = video->headerInfo.CBP[mbnum];
421 video->headerInfo.CBP[mbnum] = CBP;
fastcodemb.cpp 54 UChar Mode = video->headerInfo.Mode[mbnum];
248 video->headerInfo.CBP[mbnum] = CBP; /* 5/18/2001 */
283 UChar Mode = video->headerInfo.Mode[mbnum];
469 video->headerInfo.CBP[mbnum] = CBP; /* 5/18/2001 */
combined_encode.cpp 268 UChar *Mode = video->headerInfo.Mode;
441 CBP = video->headerInfo.CBP[mbnum];
492 video->headerInfo.CBP[mbnum] = CBP;
mp4enc_api.cpp 650 video->headerInfo.Mode = (UChar *) M4VENC_MALLOC(sizeof(UChar) * nTotalMB); /* Memory for MB Modes */
651 if (video->headerInfo.Mode == NULL) goto CLEAN_UP;
652 video->headerInfo.CBP = (UChar *) M4VENC_MALLOC(sizeof(UChar) * nTotalMB); /* Memory for CBP (Y and C) of each MB */
653 if (video->headerInfo.CBP == NULL) goto CLEAN_UP;
    [all...]
  /frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 370 * @param headerInfo Information for initializing decryption of this decrypUnit
377 const DrmBuffer* headerInfo);

Completed in 804 milliseconds

1 2