Searched refs:subSample (Results 1 – 7 of 7) sorted by relevance
69 if (subSample.clearHeaderLen > 0) { in DecryptMediaData()73 if (subSample.payLoadLen > 0) { in DecryptMediaData()154 for (auto &subSample : subSamples) { in DecryptBySM4Cbc() local155 if (subSample.clearHeaderLen > 0) { in DecryptBySM4Cbc()157 …ret = memcpy_s(destData + offset, subSample.clearHeaderLen, srcData + offset, subSample.clearHeade… in DecryptBySM4Cbc()166 if (subSample.payLoadLen > 0) { in DecryptBySM4Cbc()174 offset += subSample.payLoadLen; in DecryptBySM4Cbc()198 for (auto &subSample : subSamples) { in DecryptByAesCbc() local210 if (subSample.payLoadLen > 0) { in DecryptByAesCbc()228 for (auto &subSample : subSamples) { in CopyBuffer() local[all …]
124 DRM_CHECK_AND_RETURN_RET_LOG(data.WriteUint32(cryptInfo.subSample.size()), IPC_PROXY_ERR, in DecryptMediaData()126 for (size_t i = 0; i < cryptInfo.subSample.size(); i++) { in DecryptMediaData()127 …DRM_CHECK_AND_RETURN_RET_LOG(data.WriteUint32(cryptInfo.subSample[i].clearHeaderLen), IPC_PROXY_ER… in DecryptMediaData()130 … DRM_CHECK_AND_RETURN_RET_LOG(data.WriteUint32(cryptInfo.subSample[i].payLoadLen), IPC_PROXY_ERR, in DecryptMediaData()
87 cryptInfo.subSample.resize(subSampleNumber); in OnRemoteRequest()89 cryptInfo.subSample[i].clearHeaderLen = data.ReadUint32(); in OnRemoteRequest()90 cryptInfo.subSample[i].payLoadLen = data.ReadUint32(); in OnRemoteRequest()
121 cryptInfoTmp.subSamples.resize(cryptInfo.subSample.size()); in SetCryptInfo()122 for (size_t i = 0; i < cryptInfo.subSample.size(); i++) { in SetCryptInfo()123 cryptInfoTmp.subSamples[i].clearHeaderLen = cryptInfo.subSample[i].clearHeaderLen; in SetCryptInfo()125 cryptInfoTmp.subSamples[i].payLoadLen = cryptInfo.subSample[i].payLoadLen; in SetCryptInfo()
284 SubSample subSample;285 subSample.clearHeaderLen = 0;286 subSample.payLoadLen = 16;287 info.subSamples.push_back(subSample);
52 std::vector<SubSample> subSample; member
732 cryptInfo.subSample.emplace_back(temp); in DecryptMediaData()