HomeSort by relevance Sort by last modified time
    Searched full:nativebuffer (Results 1 - 14 of 14) sorted by null

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeBuffer.java 25 public class NativeBuffer {
36 public NativeBuffer() {
39 public NativeBuffer(int count) {
44 public NativeBuffer mutableCopy() {
45 NativeBuffer result = null;
48 result = (NativeBuffer)myClass.newInstance();
54 throw new RuntimeException("Failed to copy NativeBuffer to mutable instance!");
71 public NativeBuffer retain() {
80 public NativeBuffer release() {
128 private native boolean nativeCopyTo(NativeBuffer buffer)
    [all...]
NativeFrame.java 24 import android.filterfw.core.NativeBuffer;
67 * NativeBuffer. The NativeBuffer returned is only valid for as long as the frame is alive. If
84 // Make sure it is a NativeBuffer subclass
85 if (!NativeBuffer.class.isAssignableFrom(structClass)) {
87 "NativeBuffer!");
91 NativeBuffer structData = null;
93 structData = (NativeBuffer)structClass.newInstance();
248 private native boolean getNativeBuffer(NativeBuffer buffer);
SimpleFrame.java 23 import android.filterfw.core.NativeBuffer;
SerializedFrame.java 23 import android.filterfw.core.NativeBuffer;
  /frameworks/native/libs/gui/
CpuConsumer.cpp 56 status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
59 if (!nativeBuffer) return BAD_VALUE;
100 nativeBuffer->data = reinterpret_cast<uint8_t*>(mBufferPointers[buf]);
101 nativeBuffer->width = mSlots[buf].mGraphicBuffer->getWidth();
102 nativeBuffer->height = mSlots[buf].mGraphicBuffer->getHeight();
103 nativeBuffer->format = mSlots[buf].mGraphicBuffer->getPixelFormat();
104 nativeBuffer->stride = mSlots[buf].mGraphicBuffer->getStride();
106 nativeBuffer->crop = b.mCrop;
107 nativeBuffer->transform = b.mTransform;
108 nativeBuffer->scalingMode = b.mScalingMode
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
ObjectFormat.java 22 import android.filterfw.core.NativeBuffer;
60 if (!NativeBuffer.class.isAssignableFrom(clazz)) {
62 "NativeBuffer subclass! (Received class: " + clazz + ").");
65 return ((NativeBuffer)clazz.newInstance()).getElementSize();
  /frameworks/base/media/mca/filterfw/jni/
jni_native_buffer.cpp 21 jclass base_class = env->FindClass("android/filterfw/core/NativeBuffer");
40 jclass base_class = env->FindClass("android/filterfw/core/NativeBuffer");
jni_native_buffer.h 24 * Given a Java NativeBuffer instance, get access to the underlying C pointer and its size. The
30 * Attach a given C data buffer and its size to a given allocated Java NativeBuffer instance. After
  /frameworks/native/libs/ui/
FramebufferNativeWindow.cpp 44 class NativeBuffer
47 NativeBuffer,
48 LightRefBase<NativeBuffer> >
51 NativeBuffer(int w, int h, int f, int u) : BASE() {
58 friend class LightRefBase<NativeBuffer>;
59 ~NativeBuffer() { }; // this class cannot be overloaded
119 buffers[i] = new NativeBuffer(
280 buffer_handle_t handle = static_cast<NativeBuffer*>(buffer)->handle;
287 self->front = static_cast<NativeBuffer*>(buffer);
  /frameworks/native/include/gui/
CpuConsumer.h 77 status_t lockNextBuffer(LockedBuffer *nativeBuffer);
83 status_t unlockBuffer(const LockedBuffer &nativeBuffer);
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 41 class NativeBuffer;
81 sp<NativeBuffer> buffers[MAX_NUM_FRAME_BUFFERS];
82 sp<NativeBuffer> front;
  /frameworks/base/media/mca/
structgen.py 49 jclass base_class = (*env)->FindClass(env, "android/filterfw/core/NativeBuffer");
81 import android.filterfw.core.NativeBuffer;
275 return "public class %s extends NativeBuffer {\n\n"\
  /frameworks/native/include/media/hardware/
HardwareAPI.h 87 const sp<ANativeWindowBuffer>& nativeBuffer;
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Android.cpp 476 pANB = pANBParams->nativeBuffer.get();

Completed in 2402 milliseconds