Home
last modified time | relevance | path

Searched refs:AMediaCodecCryptoInfo (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/include/ndk/
DNdkMediaCodec.h51 typedef struct AMediaCodecCryptoInfo AMediaCodecCryptoInfo; typedef
140 size_t idx, off_t offset, AMediaCodecCryptoInfo*, uint64_t time, uint32_t flags);
187 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new(
199 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo*);
204 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo*);
209 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo*, uint8_t *dst);
214 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo*, uint8_t *dst);
220 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo*);
225 media_status_t AMediaCodecCryptoInfo_getClearBytes(AMediaCodecCryptoInfo*, size_t *dst);
230 media_status_t AMediaCodecCryptoInfo_getEncryptedBytes(AMediaCodecCryptoInfo*, size_t *dst);
DNdkMediaExtractor.h153 AMediaCodecCryptoInfo *AMediaExtractor_getSampleCryptoInfo(AMediaExtractor *);
/frameworks/av/media/ndk/
DNdkMediaCodec.cpp370 typedef struct AMediaCodecCryptoInfo { struct
377 } AMediaCodecCryptoInfo; argument
384 AMediaCodecCryptoInfo* crypto, in AMediaCodec_queueSecureInputBuffer()
415 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new( in AMediaCodecCryptoInfo_new()
424 size_t cryptosize = sizeof(AMediaCodecCryptoInfo) + sizeof(size_t) * numsubsamples * 2; in AMediaCodecCryptoInfo_new()
425 AMediaCodecCryptoInfo *ret = (AMediaCodecCryptoInfo*) malloc(cryptosize); in AMediaCodecCryptoInfo_new()
447 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo* info) { in AMediaCodecCryptoInfo_delete()
453 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { in AMediaCodecCryptoInfo_getNumSubSamples()
458 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { in AMediaCodecCryptoInfo_getKey()
470 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { in AMediaCodecCryptoInfo_getIV()
[all …]
DNdkMediaExtractor.cpp304 AMediaCodecCryptoInfo *AMediaExtractor_getSampleCryptoInfo(AMediaExtractor *ex) { in AMediaExtractor_getSampleCryptoInfo()