Also add necessary plumbing for RAW_PRIVATE to work for ImageReader. Bug: 25596619 Change-Id: Ic90f3f44264ac46fae1fafbc27ac64b5319f0970
91 lines
3.0 KiB
C++
91 lines
3.0 KiB
C++
/*
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef _ANDROID_VIEW_SURFACE_H
|
|
#define _ANDROID_VIEW_SURFACE_H
|
|
|
|
#include <android/native_window.h>
|
|
|
|
#include "jni.h"
|
|
|
|
namespace android {
|
|
|
|
class Surface;
|
|
class IGraphicBufferProducer;
|
|
|
|
/**
|
|
* Enum mirroring the public API definitions for image and pixel formats.
|
|
* Some of these are hidden in the public API
|
|
*
|
|
* Keep up to date with android.graphics.ImageFormat and
|
|
* android.graphics.PixelFormat
|
|
*/
|
|
enum class PublicFormat {
|
|
UNKNOWN = 0x0,
|
|
RGBA_8888 = 0x1,
|
|
RGBX_8888 = 0x2,
|
|
RGB_888 = 0x3,
|
|
RGB_565 = 0x4,
|
|
NV16 = 0x10,
|
|
NV21 = 0x11,
|
|
YUY2 = 0x14,
|
|
RAW_SENSOR = 0x20,
|
|
PRIVATE = 0x22,
|
|
YUV_420_888 = 0x23,
|
|
RAW_PRIVATE = 0x24,
|
|
RAW10 = 0x25,
|
|
RAW12 = 0x26,
|
|
JPEG = 0x100,
|
|
DEPTH_POINT_CLOUD = 0x101,
|
|
YV12 = 0x32315659,
|
|
Y8 = 0x20203859, // @hide
|
|
Y16 = 0x20363159, // @hide
|
|
DEPTH16 = 0x44363159
|
|
};
|
|
|
|
/* Gets the underlying ANativeWindow for a Surface. */
|
|
extern sp<ANativeWindow> android_view_Surface_getNativeWindow(
|
|
JNIEnv* env, jobject surfaceObj);
|
|
|
|
/* Returns true if the object is an instance of Surface. */
|
|
extern bool android_view_Surface_isInstanceOf(JNIEnv* env, jobject obj);
|
|
|
|
/* Gets the underlying Surface from a Surface Java object. */
|
|
extern sp<Surface> android_view_Surface_getSurface(JNIEnv* env, jobject surfaceObj);
|
|
|
|
/* Creates a Surface from an IGraphicBufferProducer. */
|
|
extern jobject android_view_Surface_createFromIGraphicBufferProducer(JNIEnv* env,
|
|
const sp<IGraphicBufferProducer>& bufferProducer);
|
|
|
|
/* Convert from android.graphics.ImageFormat/PixelFormat enums to graphics.h HAL
|
|
* format */
|
|
extern int android_view_Surface_mapPublicFormatToHalFormat(PublicFormat f);
|
|
|
|
/* Convert from android.graphics.ImageFormat/PixelFormat enums to graphics.h HAL
|
|
* dataspace */
|
|
extern android_dataspace android_view_Surface_mapPublicFormatToHalDataspace(
|
|
PublicFormat f);
|
|
|
|
/* Convert from HAL format, dataspace pair to
|
|
* android.graphics.ImageFormat/PixelFormat.
|
|
* For unknown/unspecified pairs, returns PublicFormat::UNKNOWN */
|
|
extern PublicFormat android_view_Surface_mapHalFormatDataspaceToPublicFormat(
|
|
int format, android_dataspace dataSpace);
|
|
|
|
} // namespace android
|
|
|
|
#endif // _ANDROID_VIEW_SURFACE_H
|