OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PortInfo
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Signature.java
44
private HashMap<String,
PortInfo
> mInputPorts = null;
45
private HashMap<String,
PortInfo
> mOutputPorts = null;
49
static class
PortInfo
{
53
public
PortInfo
() {
58
public
PortInfo
(int flags, FrameType type) {
94
addInputPort(name, new
PortInfo
(flags, type));
107
addOutputPort(name, new
PortInfo
(flags, type));
146
for (Entry<String,
PortInfo
> entry : mInputPorts.entrySet()) {
149
for (Entry<String,
PortInfo
> entry : mOutputPorts.entrySet()) {
161
PortInfo
getInputPortInfo(String name)
[
all
...]
GraphExporter.java
171
HashMap<String, Signature.
PortInfo
> signaturePorts = filter.getSignature().getInputPorts();
173
for(Entry<String, Signature.
PortInfo
> e : signaturePorts.entrySet()) {
189
HashMap<String, Signature.
PortInfo
> signaturePorts = filter.getSignature().getOutputPorts();
191
for(Entry<String, Signature.
PortInfo
> e : signaturePorts.entrySet()) {
OutputPort.java
37
private Signature.
PortInfo
mInfo;
145
OutputPort(Filter filter, String name, Signature.
PortInfo
info) {
InputPort.java
40
private Signature.
PortInfo
mInfo;
275
InputPort(Filter filter, String name, Signature.
PortInfo
info) {
Filter.java
727
Signature.
PortInfo
info = getSignature().getInputPortInfo(name);
737
Signature.
PortInfo
info = getSignature().getOutputPortInfo(name);
/frameworks/av/media/libstagefright/omx/
SimpleSoftOMXComponent.cpp
134
const
PortInfo
*port =
161
PortInfo
*port =
216
PortInfo
*port = &mPorts.editItemAt(portIndex);
268
PortInfo
*port = &mPorts.editItemAt(portIndex);
360
PortInfo
*port = &mPorts.editItemAt(portIndex);
460
PortInfo
*port = &mPorts.editItemAt(portIndex);
461
CHECK_EQ((int)port->mTransition, (int)
PortInfo
::NONE);
466
port->mTransition =
PortInfo
::DISABLING;
485
port->mTransition =
PortInfo
::ENABLING;
507
PortInfo
*port = &mPorts.editItemAt(portIndex)
[
all
...]
/frameworks/av/media/libstagefright/include/
SimpleSoftOMXComponent.h
49
struct
PortInfo
{
76
PortInfo
*editPortInfo(OMX_U32 portIndex);
93
Vector<
PortInfo
> mPorts;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
MffFilterTestCase.java
19
import androidx.media.filterfw.Signature.
PortInfo
;
139
for (Entry<String,
PortInfo
> inputPortEntry : signature.getInputPorts().entrySet()) {
151
for (Entry<String,
PortInfo
> outputPortEntry : signature.getOutputPorts().entrySet()) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp
106
PortInfo
*port = editPortInfo(1);
190
PortInfo
*port = editPortInfo(1);
Completed in 399 milliseconds