Searched refs:aesStart (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c1259 static int32_t drm_readAesData(uint8_t* buf, T_DRM_Session_Node* s, int32_t aesStart, int32_t bufLen) argument
1261 if (NULL == buf || NULL == s || aesStart < 0 || bufLen < 0)
1264 if (aesStart - s->contentOffset + bufLen > ((T_DRM_Dcf_Node *)(s->infoStruct))->encContentLength)
1267 if (aesStart < DRM_MAX_MALLOC_LEN) {
1268 if (aesStart + bufLen <= DRM_MAX_MALLOC_LEN) { /* read from buffer */
1269 memcpy(buf, s->rawContent + aesStart, bufLen);
1272 int32_t point = DRM_MAX_MALLOC_LEN - aesStart;
1283 memcpy(buf, s->rawContent + aesStart, point);
1579 int32_t aesStart, mediaStart, mediaBufOff; local
1598 aesStart
[all...]

Completed in 59 milliseconds