Searched defs:AMediaCodecCryptoInfo (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/include/ndk/
H A DNdkMediaCodec.h51 typedef struct AMediaCodecCryptoInfo AMediaCodecCryptoInfo; typedef in typeref:struct:AMediaCodecCryptoInfo
140 size_t idx, off_t offset, AMediaCodecCryptoInfo*, uint64_t time, uint32_t flags);
173 * Create an AMediaCodecCryptoInfo from scratch. Use this if you need to use custom
176 * AMediaCodecCryptoInfo describes the structure of an (at least
186 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new(
195 * delete an AMediaCodecCryptoInfo created previously with AMediaCodecCryptoInfo_new, or
198 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo*);
203 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo*);
208 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo*, uint8_
[all...]
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp361 typedef struct AMediaCodecCryptoInfo { struct
368 } AMediaCodecCryptoInfo; typedef in typeref:struct:AMediaCodecCryptoInfo
375 AMediaCodecCryptoInfo* crypto,
406 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new(
415 size_t cryptosize = sizeof(AMediaCodecCryptoInfo) + sizeof(size_t) * numsubsamples * 2;
416 AMediaCodecCryptoInfo *ret = (AMediaCodecCryptoInfo*) malloc(cryptosize);
438 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo* info) {
444 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) {
449 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* c
[all...]

Completed in 279 milliseconds