OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pDecoderInterface
(Results
1 - 12
of
12
) sorted by null
/frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorAudioDecoder.h
28
M4AD_Interface**
pDecoderInterface
);
31
M4AD_Interface**
pDecoderInterface
);
34
M4AD_Interface**
pDecoderInterface
);
37
M4AD_Interface**
pDecoderInterface
);
VideoEditorVideoDecoder.h
29
M4OSA_Context *
pDecoderInterface
);
33
M4OSA_Context *
pDecoderInterface
);
/frameworks/av/libvideoeditor/vss/common/inc/
M4AD_Null.h
39
* @param
pDecoderInterface
: address of a pointer that will be set to the interface implemented
47
M4OSA_ERR M4AD_NULL_getInterface( M4AD_Type *pDecoderType, M4AD_Interface **
pDecoderInterface
);
M4DECODER_Null.h
40
* @param
pDecoderInterface
: Address of a pointer that will be set to
50
M4DECODER_VideoInterface **
pDecoderInterface
);
/frameworks/av/libvideoeditor/vss/src/
M4AD_Null.c
225
* @param
pDecoderInterface
: address of a pointer that will be set to the interface
234
M4OSA_ERR M4AD_NULL_getInterface( M4AD_Type *pDecoderType, M4AD_Interface **
pDecoderInterface
)
236
*
pDecoderInterface
= ( M4AD_Interface*)M4OSA_32bitAlignedMalloc( sizeof(M4AD_Interface),
238
if (M4OSA_NULL == *
pDecoderInterface
)
245
(*
pDecoderInterface
)->m_pFctCreateAudioDec = M4AD_NULL_create;
246
(*
pDecoderInterface
)->m_pFctDestroyAudioDec = M4AD_NULL_destroy;
247
(*
pDecoderInterface
)->m_pFctStepAudioDec = M4AD_NULL_step;
248
(*
pDecoderInterface
)->m_pFctGetVersionAudioDec = M4AD_NULL_getVersion;
249
(*
pDecoderInterface
)->m_pFctStartAudioDec = M4OSA_NULL;
250
(*
pDecoderInterface
)->m_pFctResetAudioDec = M4OSA_NULL
[
all
...]
M4DECODER_Null.c
405
* @param
pDecoderInterface
: Address of a pointer that will be set to
415
M4DECODER_VideoInterface **
pDecoderInterface
) {
417
*
pDecoderInterface
=
422
if (M4OSA_NULL == *
pDecoderInterface
) {
428
(*
pDecoderInterface
)->m_pFctCreate = M4DECODER_NULL_create;
429
(*
pDecoderInterface
)->m_pFctDestroy = M4DECODER_NULL_destroy;
430
(*
pDecoderInterface
)->m_pFctGetOption = M4DECODER_NULL_getOption;
431
(*
pDecoderInterface
)->m_pFctSetOption = M4DECODER_NULL_setOption;
432
(*
pDecoderInterface
)->m_pFctDecode = M4DECODER_NULL_decode;
433
(*
pDecoderInterface
)->m_pFctRender = M4DECODER_NULL_render;
[
all
...]
M4VSS3GPP_Codecs.c
345
* @param
pDecoderInterface
(IN) Decoder interface.
353
M4DECODER_VideoInterface *
pDecoderInterface
)
357
M4OSA_DEBUG_IF1((M4OSA_NULL ==
pDecoderInterface
), M4ERR_PARAMETER,
405
pC->m_pVideoDecoderItTable[decoderType] =
pDecoderInterface
;
426
* @param
pDecoderInterface
(IN) Audio decoder interface.
432
M4AD_Type decoderType, M4AD_Interface *
pDecoderInterface
)
436
M4OSA_DEBUG_IF1((M4OSA_NULL ==
pDecoderInterface
), M4ERR_PARAMETER,
459
pC->m_pAudioDecoderItTable[decoderType] =
pDecoderInterface
;
[
all
...]
/frameworks/av/libvideoeditor/vss/mcs/inc/
M4MCS_InternalFunctions.h
157
* @param
pDecoderInterface
(IN) Decoder interface.
165
M4DECODER_VideoInterface *
pDecoderInterface
);
173
* @param
pDecoderInterface
(IN) Audio decoder interface.
179
M4AD_Interface *
pDecoderInterface
);
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorAudioDecoder.cpp
896
M4AD_Type* pDecoderType, M4AD_Interface**
pDecoderInterface
) {
902
VIDEOEDITOR_CHECK(M4OSA_NULL !=
pDecoderInterface
, M4ERR_PARAMETER);
905
decoderType, pDecoderType,
pDecoderInterface
);
907
SAFE_MALLOC(*
pDecoderInterface
, M4AD_Interface, 1,
914
(*
pDecoderInterface
)->m_pFctCreateAudioDec =
918
(*
pDecoderInterface
)->m_pFctCreateAudioDec =
922
(*
pDecoderInterface
)->m_pFctCreateAudioDec =
926
(*
pDecoderInterface
)->m_pFctCreateAudioDec =
934
(*
pDecoderInterface
)->m_pFctDestroyAudioDec =
936
(*
pDecoderInterface
)->m_pFctResetAudioDec = M4OSA_NULL
[
all
...]
VideoEditorVideoDecoder.cpp
[
all
...]
/frameworks/av/libvideoeditor/vss/inc/
M4VSS3GPP_InternalFunctions.h
312
* @param
pDecoderInterface
(IN) Decoder interface.
320
M4DECODER_VideoInterface *
pDecoderInterface
);
329
* @param
pDecoderInterface
(IN) Audio decoder interface.
337
M4AD_Interface *
pDecoderInterface
);
/frameworks/av/libvideoeditor/vss/mcs/src/
M4MCS_Codecs.c
335
* @param
pDecoderInterface
(IN) Decoder interface.
344
M4DECODER_VideoInterface *
pDecoderInterface
)
349
M4OSA_DEBUG_IF1((M4OSA_NULL ==
pDecoderInterface
), M4ERR_PARAMETER,
379
pC->m_pVideoDecoderItTable[decoderType] =
pDecoderInterface
;
398
* @param
pDecoderInterface
(IN) Audio decoder interface.
406
M4AD_Interface *
pDecoderInterface
)
411
M4OSA_DEBUG_IF1((M4OSA_NULL ==
pDecoderInterface
), M4ERR_PARAMETER,
431
pC->m_pAudioDecoderItTable[decoderType] =
pDecoderInterface
;
[
all
...]
Completed in 363 milliseconds