/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 | 70 status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) { 73 if (!nativeBuffer) return BAD_VALUE; 148 nativeBuffer->data = 150 nativeBuffer->width = mSlots[buf].mGraphicBuffer->getWidth(); 151 nativeBuffer->height = mSlots[buf].mGraphicBuffer->getHeight(); 152 nativeBuffer->format = mSlots[buf].mGraphicBuffer->getPixelFormat(); 153 nativeBuffer->stride = (ycbcr.y != NULL) ? 157 nativeBuffer->crop = b.mCrop; 158 nativeBuffer->transform = b.mTransform; 159 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 | 99 status_t lockNextBuffer(LockedBuffer *nativeBuffer); 105 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 | 128 const sp<ANativeWindowBuffer>& nativeBuffer;
|
/frameworks/rs/ |
rsAllocation.h | 70 ANativeWindowBuffer *nativeBuffer;
|
rsGrallocConsumer.cpp | 129 mAlloc->mHal.state.nativeBuffer = mAcquiredBuffer.mGraphicBuffer->getNativeBuffer();
|
rs_hal.h | 162 * The new gralloc handle is provided in mHal.state.nativeBuffer
|
/frameworks/rs/driver/runtime/ |
rs_structs.h | 42 void * nativeBuffer;
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
omx_vdec.h | 716 struct nativebuffer { struct in class:omx_vdec 721 nativebuffer native_buffer[MAX_NUM_INPUT_OUTPUT_BUFFERS]; [all...] |
omx_vdec_hevc.h | 683 struct nativebuffer { struct in class:omx_vdec 688 nativebuffer native_buffer[MAX_NUM_INPUT_OUTPUT_BUFFERS]; [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/ |
Exynos_OSAL_Android.cpp | 759 pANB = pANBParams->nativeBuffer.get();
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
omx_vdec.cpp | 538 memset(&native_buffer, 0 ,(sizeof(struct nativebuffer) * MAX_NUM_INPUT_OUTPUT_BUFFERS)); [all...] |
omx_vdec_hevc.cpp | 579 memset(&native_buffer, 0 ,(sizeof(struct nativebuffer) * MAX_NUM_INPUT_OUTPUT_BUFFERS)); [all...] |
omx_vdec_msm8974.cpp | 606 memset(&native_buffer, 0 ,(sizeof(struct nativebuffer) * MAX_NUM_INPUT_OUTPUT_BUFFERS)); [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/ |
omx_vdec.cpp | [all...] |
omx_vdec_copper.cpp | [all...] |