Searched refs:specification (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java193 public boolean isCompatibleWith(FrameFormat specification) { argument
195 if (specification.getBaseType() != TYPE_UNSPECIFIED
196 && getBaseType() != specification.getBaseType()) {
201 if (specification.getTarget() != TARGET_UNSPECIFIED
202 && getTarget() != specification.getTarget()) {
207 if (specification.getBytesPerSample() != BYTES_PER_SAMPLE_UNSPECIFIED
208 && getBytesPerSample() != specification.getBytesPerSample()) {
213 if (specification.getDimensionCount() > 0
214 && getDimensionCount() != specification.getDimensionCount()) {
219 for (int i = 0; i < specification
249 mayBeCompatibleWith(FrameFormat specification) argument
[all...]

Completed in 425 milliseconds