Home | History | Annotate | Download | only in omx

Lines Matching full:portindex

75     OMX_U32 portIndex;
80 portIndex = ((OMX_PARAM_PORTDEFINITIONTYPE *)params)->nPortIndex;
86 portIndex = ((OMX_AUDIO_PARAM_PCMMODETYPE *)params)->nPortIndex;
92 portIndex = ((OMX_AUDIO_PARAM_AACPROFILETYPE *)params)->nPortIndex;
100 CHECK(portIndex < mPorts.size());
102 return !mPorts.itemAt(portIndex).mDef.bEnabled;
187 OMX_U32 portIndex,
192 CHECK_LT(portIndex, mPorts.size());
213 (*header)->nOutputPortIndex = portIndex;
214 (*header)->nInputPortIndex = portIndex;
216 PortInfo *port = &mPorts.editItemAt(portIndex);
240 OMX_U32 portIndex,
246 useBuffer(header, portIndex, appPrivate, size, ptr);
262 OMX_U32 portIndex,
266 CHECK_LT(portIndex, mPorts.size());
268 PortInfo *port = &mPorts.editItemAt(portIndex);
358 size_t portIndex = (kWhatEmptyThisBuffer == msgType)?
360 PortInfo *port = &mPorts.editItemAt(portIndex);
375 onQueueFilled(portIndex);
457 void SimpleSoftOMXComponent::onPortEnable(OMX_U32 portIndex, bool enable) {
458 CHECK_LT(portIndex, mPorts.size());
460 PortInfo *port = &mPorts.editItemAt(portIndex);
492 OMX_U32 portIndex, bool sendFlushComplete) {
493 if (portIndex == OMX_ALL) {
505 CHECK_LT(portIndex, mPorts.size());
507 PortInfo *port = &mPorts.editItemAt(portIndex);
543 notify(OMX_EventCmdComplete, OMX_CommandFlush, portIndex, NULL);
545 onPortFlushCompleted(portIndex);
639 void SimpleSoftOMXComponent::onQueueFilled(OMX_U32 portIndex __unused) {
642 void SimpleSoftOMXComponent::onPortFlushCompleted(OMX_U32 portIndex __unused) {
646 OMX_U32 portIndex __unused, bool enabled __unused) {
650 SimpleSoftOMXComponent::getPortQueue(OMX_U32 portIndex) {
651 CHECK_LT(portIndex, mPorts.size());
652 return mPorts.editItemAt(portIndex).mQueue;
656 OMX_U32 portIndex) {
657 CHECK_LT(portIndex, mPorts.size());
658 return &mPorts.editItemAt(portIndex);