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);
174 * Create an AMediaCodecCryptoInfo from scratch. Use this if you need to use custom
177 * AMediaCodecCryptoInfo describes the structure of an (at least
187 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new(
196 * delete an AMediaCodecCryptoInfo created previously with AMediaCodecCryptoInfo_new, or
199 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo*);
204 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo*);
209 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo*, uint8_
[all...]
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp370 typedef struct AMediaCodecCryptoInfo { struct
377 } AMediaCodecCryptoInfo; typedef in typeref:struct:AMediaCodecCryptoInfo
384 AMediaCodecCryptoInfo* crypto,
415 AMediaCodecCryptoInfo *AMediaCodecCryptoInfo_new(
424 size_t cryptosize = sizeof(AMediaCodecCryptoInfo) + sizeof(size_t) * numsubsamples * 2;
425 AMediaCodecCryptoInfo *ret = (AMediaCodecCryptoInfo*) malloc(cryptosize);
447 media_status_t AMediaCodecCryptoInfo_delete(AMediaCodecCryptoInfo* info) {
453 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) {
458 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* c
[all...]

Completed in 6 milliseconds