OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AMediaCodecCryptoInfo
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/include/ndk/
NdkMediaCodec.h
51
typedef struct
AMediaCodecCryptoInfo
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_t *dst)
[
all
...]
/prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/media/
NdkMediaCodec.h
51
typedef struct
AMediaCodecCryptoInfo
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_t *dst)
[
all
...]
/prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/media/
NdkMediaCodec.h
51
typedef struct
AMediaCodecCryptoInfo
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_t *dst)
[
all
...]
/prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/media/
NdkMediaCodec.h
51
typedef struct
AMediaCodecCryptoInfo
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_t *dst)
[
all
...]
/frameworks/av/media/ndk/
NdkMediaCodec.cpp
361
typedef struct
AMediaCodecCryptoInfo
{
368
}
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
* ci, uint8_t *dst)
[
all
...]
Completed in 154 milliseconds