Searched refs:getFormat (Results 1 - 25 of 175) sorted by relevance

1234567

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeFrame.java73 if (getFormat().getBaseType() != FrameFormat.TYPE_OBJECT) {
78 Class structClass = getFormat().getObjectClass();
113 if (ints.length * nativeIntSize() > getFormat().getSize()) {
116 (getFormat().getSize() / nativeIntSize()) + " integers).");
124 return getNativeInts(getFormat().getSize());
130 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
133 (getFormat().getSize() / nativeFloatSize()) + " floats).");
141 return getNativeFloats(getFormat().getSize());
154 } else if (getFormat().getSize() != length) {
156 "Frame size is " + getFormat()
[all...]
H A DGLFrame.java79 FrameFormat format = getFormat();
87 } else if (getFormat().getSize() < 0) {
120 if (!nativeAllocate(mGLEnvironment, getFormat().getWidth(), getFormat().getHeight())) {
127 int width = getFormat().getWidth();
128 int height = getFormat().getHeight();
137 int width = getFormat().getWidth();
138 int height = getFormat().getHeight();
211 if (getFormat().getSize() != bytes.length) {
229 if (getFormat()
[all...]
H A DVertexFrame.java36 if (getFormat().getSize() <= 0) {
39 if (!nativeAllocate(getFormat().getSize())) {
91 if (getFormat().getSize() != bytes.length) {
125 return "VertexFrame (" + getFormat() + ") with VBO ID " + getVboId();
H A DFrameManager.java36 Frame result = newFrame(frame.getFormat());
42 MutableFrameFormat newFormat = frame.getFormat().mutableCopy();
H A DCachedFrameManager.java101 int frameSize = frame.getFormat().getSize();
125 mStorageSize -= frame.getFormat().getSize();
136 if (frame.getFormat().isReplaceableBy(format)) {
H A DSimpleFrame.java134 MutableFrameFormat format = getFormat().mutableCopy();
144 FrameFormat format = getFormat();
159 return "SimpleFrame (" + getFormat() + ")";
H A DFilterPort.java121 && !frame.getFormat().isCompatibleWith(mPortFormat)) {
123 + "Expected " + mPortFormat + " but got " + frame.getFormat());
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSource.cpp38 CHECK(mediaSource->getFormat()->findCString(kKeyMIMEType, &mime));
62 sp<MetaData> TimedTextSource::getFormat() { function in class:android::TimedTextSource
H A DTimedText3GPPSource.cpp72 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
96 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
102 if (!mSource->getFormat()->findData(
115 sp<MetaData> TimedText3GPPSource::getFormat() { function in class:android::TimedText3GPPSource
116 return mSource->getFormat();
H A DTimedText3GPPSource.h41 virtual sp<MetaData> getFormat();
/frameworks/av/cmds/stagefright/
H A DSineSource.h17 virtual sp<MetaData> getFormat();
/frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
H A DMP4Source.h33 virtual sp<AMessage> getFormat(bool audio);
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.h34 virtual sp<MetaData> getFormat();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DResizeFilter.java92 createProgram(env, input.getFormat());
95 MutableFrameFormat outputFormat = input.getFormat().mutableCopy();
97 FrameFormat inputFormat = input.getFormat();
105 GLFrame mipmapped = (GLFrame)env.getFrameManager().newFrame(input.getFormat());
H A DImageSlicer.java78 mInputWidth = frame.getFormat().getWidth();
79 mInputHeight = frame.getFormat().getHeight();
98 FrameFormat inputFormat = mOriginalFrame.getFormat();
H A DToRGBAFilter.java88 createProgram(context, input.getFormat());
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
H A DToRGBFilter.java88 createProgram(context, input.getFormat());
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DSizeChangeEffect.java53 int outputWidth = resultFrame.getFormat().getWidth();
54 int outputHeight = resultFrame.getFormat().getHeight();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureTarget.java53 FrameFormat format = ImageFormat.create(input.getFormat().getWidth(),
54 input.getFormat().getHeight(),
/frameworks/av/media/libstagefright/
H A DDRMExtractor.cpp45 virtual sp<MetaData> getFormat();
82 bool success = getFormat()->findCString(kKeyMIMEType, &mime);
89 CHECK(getFormat()->findData(kKeyAVCC, &type, &data, &size));
122 sp<MetaData> DRMSource::getFormat() { function in class:android::DRMSource
123 return mOriginalMediaSource->getFormat();
156 CHECK(getFormat()->findCString(kKeyMIMEType, &mime));
251 originalMediaSource->getFormat()->setInt32(kKeyIsDRM, 1);
/frameworks/av/include/media/stagefright/
H A DJPEGSource.h33 virtual sp<MetaData> getFormat();
/frameworks/av/libvideoeditor/lvpp/
H A DDummyVideoSource.h39 virtual sp<MetaData> getFormat();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerSource.h42 virtual sp<AMessage> getFormat(bool audio);
/frameworks/base/media/java/android/mtp/
H A DMtpObjectInfo.java73 public final int getFormat() { method in class:MtpObjectInfo
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp48 virtual sp<MetaData> getFormat();
81 sp<MetaData> MPEG2TSSource::getFormat() { function in class:android::MPEG2TSSource
82 sp<MetaData> meta = mImpl->getFormat();
140 sp<MetaData> meta = mSourceImpls.editItemAt(index)->getFormat();
155 ? mSourceImpls.editItemAt(index)->getFormat() : NULL;

Completed in 8859 milliseconds

1234567