Searched refs:AMediaCodecCryptoInfo (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/include/ndk/ |
D | NdkMediaCodec.h | 51 typedef struct AMediaCodecCryptoInfo AMediaCodecCryptoInfo; typedef 140 size_t idx, off_t offset, AMediaCodecCryptoInfo*, uint64_t time, uint32_t flags); 186 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new( 198 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo*); 203 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo*); 208 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo*, uint8_t *dst); 213 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo*, uint8_t *dst); 219 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo*); 224 media_status_t AMediaCodecCryptoInfo_getClearBytes(AMediaCodecCryptoInfo*, size_t *dst); 229 media_status_t AMediaCodecCryptoInfo_getEncryptedBytes(AMediaCodecCryptoInfo*, size_t *dst);
|
D | NdkMediaExtractor.h | 151 AMediaCodecCryptoInfo *AMediaExtractor_getSampleCryptoInfo(AMediaExtractor *);
|
/frameworks/av/media/ndk/ |
D | NdkMediaCodec.cpp | 361 typedef struct AMediaCodecCryptoInfo { struct 368 } AMediaCodecCryptoInfo; argument 375 AMediaCodecCryptoInfo* crypto, in AMediaCodec_queueSecureInputBuffer() 406 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new( in AMediaCodecCryptoInfo_new() 415 size_t cryptosize = sizeof(AMediaCodecCryptoInfo) + sizeof(size_t) * numsubsamples * 2; in AMediaCodecCryptoInfo_new() 416 AMediaCodecCryptoInfo *ret = (AMediaCodecCryptoInfo*) malloc(cryptosize); in AMediaCodecCryptoInfo_new() 438 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo* info) { in AMediaCodecCryptoInfo_delete() 444 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { in AMediaCodecCryptoInfo_getNumSubSamples() 449 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { in AMediaCodecCryptoInfo_getKey() 461 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { in AMediaCodecCryptoInfo_getIV() [all …]
|
D | NdkMediaExtractor.cpp | 303 AMediaCodecCryptoInfo *AMediaExtractor_getSampleCryptoInfo(AMediaExtractor *ex) { in AMediaExtractor_getSampleCryptoInfo()
|