Home
last modified time | relevance | path

Searched refs:inargs (Results 1 – 7 of 7) sorted by relevance

/external/aac/libAACenc/src/
Dmps_main.cpp115 SACENC_InArgs inargs; member
343 hMpsEnc->inargs.isInputInterleaved = 0; in FDK_MpegsEnc_Init()
344 hMpsEnc->inargs.inputBufferSizePerChannel = inputBufferSizePerChannel; in FDK_MpegsEnc_Init()
379 hMpsEnc->inargs.nInputSamples = nAudioSamples; in FDK_MpegsEnc_Process()
391 &hMpsEnc->outBufDesc, &hMpsEnc->inargs, in FDK_MpegsEnc_Process()
Daacenc_lib.cpp1688 const AACENC_InArgs *inargs, in aacEncEncode() argument
1732 if ((inBufDesc == NULL) && (outBufDesc == NULL) && (inargs == NULL) && in aacEncEncode()
1738 if ((inargs == NULL) || (outargs == NULL) || in aacEncEncode()
1740 (inargs->numInSamples > 0)) || in aacEncEncode()
1753 if ((inBufDesc != NULL) && (inargs->numInSamples > 0) && in aacEncEncode()
1758 fixMax(0, fixMin(inargs->numInSamples, hAacEncoder->nSamplesToRead - in aacEncEncode()
1796 if (inargs->numInSamples == -1) { in aacEncEncode()
1937 if ((inargs->numAncBytes > 0) && in aacEncEncode()
1940 hAacEncoder->extPayload[nExtensions].dataSize = inargs->numAncBytes * 8; in aacEncEncode()
1961 inargs->numAncBytes - in aacEncEncode()
/external/aac/libSACenc/include/
Dsacenc_lib.h350 const SACENC_InArgs *inargs,
/external/aac/libAACenc/include/
Daacenc_lib.h1650 const AACENC_InArgs *inargs, AACENC_OutArgs *outargs);
/external/aac/libSACenc/src/
Dsacenc_lib.cpp972 const SACENC_InArgs *inargs, in FDK_sacenc_encode() argument
1001 const int nSamplesPerChannel = inargs->nInputSamples / nChInWithDmx; in FDK_sacenc_encode()
1016 if ((0 != inargs->nInputSamples % nChInWithDmx)) { in FDK_sacenc_encode()
1063 hMp4SpaceEnc, pInputSamples, pOutputSamples, inargs->nInputSamples, in FDK_sacenc_encode()
1064 inargs->isInputInterleaved, inargs->inputBufferSizePerChannel, in FDK_sacenc_encode()
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c3598 _get_arg(int *pindex, PyObject *name, PyObject *defval, PyObject *inargs, PyObject *kwds) in _get_arg() argument
3602 if (*pindex < PyTuple_GET_SIZE(inargs)) { in _get_arg()
3603 v = PyTuple_GET_ITEM(inargs, *pindex); in _get_arg()
3647 PyObject *inargs, PyObject *kwds, in _build_callargs() argument
3668 return PyTuple_GetSlice(inargs, 1, PyTuple_GET_SIZE(inargs)); in _build_callargs()
3670 Py_INCREF(inargs); in _build_callargs()
3671 return inargs; in _build_callargs()
3716 ob =_get_arg(&inargs_index, name, defval, inargs, kwds); in _build_callargs()
3786 actual_args = PyTuple_GET_SIZE(inargs) + (kwds ? PyDict_GET_SIZE(kwds) : 0); in _build_callargs()
3873 PyCFuncPtr_call(PyCFuncPtrObject *self, PyObject *inargs, PyObject *kwds) in PyCFuncPtr_call() argument
[all …]
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c3700 _get_arg(int *pindex, char *name, PyObject *defval, PyObject *inargs, PyObject *kwds) in _get_arg() argument
3704 if (*pindex < PyTuple_GET_SIZE(inargs)) { in _get_arg()
3705 v = PyTuple_GET_ITEM(inargs, *pindex); in _get_arg()
3749 PyObject *inargs, PyObject *kwds, in _build_callargs() argument
3770 return PyTuple_GetSlice(inargs, 1, PyTuple_GET_SIZE(inargs)); in _build_callargs()
3772 Py_INCREF(inargs); in _build_callargs()
3773 return inargs; in _build_callargs()
3821 ob =_get_arg(&inargs_index, name, defval, inargs, kwds); in _build_callargs()
3891 actual_args = PyTuple_GET_SIZE(inargs) + (kwds ? PyDict_Size(kwds) : 0); in _build_callargs()
3980 PyCFuncPtr_call(PyCFuncPtrObject *self, PyObject *inargs, PyObject *kwds) in PyCFuncPtr_call() argument
[all …]