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

1 2

  /frameworks/av/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 */
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
MediaPlayerBridge.java 189 String headerInfo[] = headerContent.split(";");
190 if (headerInfo.length != 2) return false;
191 if (!"base64".equals(headerInfo[1])) return false;
  /cts/tests/tests/drm/lib/
TestPlugin.h 85 int decryptUnitId, const DrmBuffer* headerInfo);
TestPlugin.cpp 164 int decryptUnitId, const DrmBuffer* headerInfo) {
  /frameworks/av/drm/libdrmframework/include/
DrmManagerService.h 111 int decryptUnitId, const DrmBuffer* headerInfo);
NoOpDrmManagerClientImpl.h 63 int decryptUnitId, const DrmBuffer* headerInfo);
IDrmManagerService.h 154 int decryptUnitId, const DrmBuffer* headerInfo) = 0;
241 int decryptUnitId, const DrmBuffer* headerInfo);
DrmManager.h 123 int decryptUnitId, const DrmBuffer* headerInfo);
DrmManagerClientImpl.h 351 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
356 int decryptUnitId, const DrmBuffer* headerInfo);
  /frameworks/av/drm/libdrmframework/plugins/common/include/
IDrmEngine.h 377 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
382 int decryptUnitId, const DrmBuffer* headerInfo) = 0;
DrmEngineBase.h 96 int decryptUnitId, const DrmBuffer* headerInfo);
470 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
475 int decryptUnitId, const DrmBuffer* headerInfo) = 0;
  /frameworks/av/drm/libdrmframework/plugins/passthru/include/
DrmPassthruPlugIn.h 85 int decryptUnitId, const DrmBuffer* headerInfo);
  /frameworks/av/include/drm/
DrmManagerClient.h 136 * @param[in] headerInfo Information for initializing decryption of this decrypUnit
141 sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo);
  /frameworks/av/drm/common/
DrmEngineBase.cpp 152 int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) {
153 return onInitializeDecryptUnit(uniqueId, decryptHandle, decryptUnitId, headerInfo);
  /frameworks/av/drm/libdrmframework/
DrmManagerClient.cpp 143 sp<DecryptHandle> &decryptHandle, int decryptUnitId, const DrmBuffer* headerInfo) {
145 mUniqueId, decryptHandle, decryptUnitId, headerInfo);
DrmManagerClientImpl.cpp 294 int decryptUnitId, const DrmBuffer* headerInfo) {
296 if ((NULL != decryptHandle.get()) && (NULL != headerInfo)) {
298 uniqueId, decryptHandle.get(), decryptUnitId, headerInfo);
NoOpDrmManagerClientImpl.cpp 130 int decryptUnitId, const DrmBuffer* headerInfo) {
  /frameworks/av/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;
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 371 * @param headerInfo Information for initializing decryption of this decrypUnit
378 const DrmBuffer* headerInfo);

Completed in 364 milliseconds

1 2