HomeSort by relevance Sort by last modified time
    Searched refs:dataSpace (Results 1 - 25 of 52) sorted by null

1 2 3

  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.h 45 android_dataspace dataSpace;
63 dataSpace(ds),
83 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
94 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
103 uint32_t consumerUsage, android_dataspace dataSpace,
171 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
Camera3IOStreamBase.h 37 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
Camera3IOStreamBase.cpp 34 android_dataspace dataSpace, camera3_stream_rotation_t rotation, int setId) :
36 width, height, maxSize, format, dataSpace, rotation, setId),
77 lines.appendFormat(" Dims: %d x %d, format 0x%x, dataspace 0x%x\n",
Camera3OutputStream.cpp 37 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
40 /*maxSize*/0, format, dataSpace, rotation, setId),
61 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
64 format, dataSpace, rotation, setId),
91 uint32_t consumerUsage, android_dataspace dataSpace,
94 /*maxSize*/0, format, dataSpace, rotation, setId),
125 android_dataspace dataSpace,
130 format, dataSpace, rotation, setId),
431 ALOGE("%s: Unable to configure stream dataspace %#x for stream %d",
Camera3Stream.h 399 android_dataspace dataSpace, camera3_stream_rotation_t rotation,
Camera3Device.h 104 android_dataspace dataSpace, camera3_stream_rotation_t rotation, int *id,
120 uint32_t *format, android_dataspace *dataSpace);
430 * Helper function to map between legacy and new dataspace enums
432 static android_dataspace mapToLegacyDataspace(android_dataspace dataSpace);
    [all...]
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 40 uint32_t dataSpace;
  /frameworks/native/include/gui/
CpuConsumer.h 56 android_dataspace dataSpace;
81 dataSpace(HAL_DATASPACE_UNKNOWN),
IGraphicBufferProducer.h 300 // dataSpace - description of the contents, interpretation depends on format
309 android_dataspace dataSpace, const Rect& crop, int scalingMode,
312 dataSpace(dataSpace), crop(crop), scalingMode(scalingMode),
322 *outDataSpace = dataSpace;
344 android_dataspace dataSpace;
  /frameworks/base/include/android_runtime/
android_view_Surface.h 78 * dataspace */
82 /* Convert from HAL format, dataspace pair to
86 int format, android_dataspace dataSpace);
  /frameworks/av/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 367 // color conversion to RGB. For now, just mark dataspace for YUV rendering.
368 android_dataspace dataSpace;
369 if (format->findInt32("android._dataspace", (int32_t *)&dataSpace) && dataSpace != mDataSpace) {
370 ALOGD("setting dataspace on output surface to #%x", dataSpace);
371 if ((err = native_window_set_buffers_data_space(mNativeWindow.get(), dataSpace))) {
372 ALOGW("failed to set dataspace on surface (%d)", err);
374 mDataSpace = dataSpace;
  /frameworks/av/media/libstagefright/omx/
GraphicBufferSource.h 78 void setDefaultDataSpace(android_dataspace dataSpace);
155 // Sets the desired color aspects, e.g. to be used when producer does not specify a dataspace.
256 void onDataSpaceChanged_l(android_dataspace dataSpace, android_pixel_format pixelFormat);
272 // Last dataspace seen
GraphicBufferSource.cpp 228 ALOGV("clearing last dataSpace");
514 android_dataspace dataSpace, android_pixel_format pixelFormat) {
515 ALOGD("got buffer with new dataSpace #%x", dataSpace);
516 mLastDataSpace = dataSpace;
518 if (ColorUtils::convertDataSpaceToV0(dataSpace)) {
526 // V0 dataspace
556 // if we can't set or get color aspects, still communicate dataspace to client
571 // signal client that the dataspace has changed; this will update the output format
577 OMX_EventDataSpaceChanged, dataSpace,
    [all...]
  /frameworks/av/services/camera/libcameraservice/common/
CameraDeviceBase.h 105 * Create an output stream of the requested size, format, rotation and dataspace
112 android_dataspace dataSpace, camera3_stream_rotation_t rotation, int *id,
135 uint32_t *format, android_dataspace *dataSpace) = 0;
  /frameworks/native/libs/gui/tests/
IGraphicBufferProducer_test.cpp 129 dataSpace = QUEUE_BUFFER_INPUT_DATASPACE;
140 dataSpace,
157 QueueBufferInputBuilder& setDataSpace(android_dataspace dataSpace) {
158 this->dataSpace = dataSpace;
185 android_dataspace dataSpace;
Surface_test.cpp 175 android_dataspace dataSpace;
178 reinterpret_cast<int*>(&dataSpace));
181 ASSERT_EQ(TEST_DATASPACE, dataSpace);
SRGB_test.cpp 221 void checkLockedBuffer(PixelFormat format, android_dataspace dataSpace) {
225 ASSERT_EQ(mLockedBuffer.dataSpace, dataSpace);
344 ASSERT_EQ(mLockedBuffer.dataSpace, HAL_DATASPACE_SRGB);
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.cpp 449 android_dataspace dataSpace;
516 reinterpret_cast<int*>(&dataSpace))) != OK) {
517 String8 msg = String8::format("Camera %d: Failed to query Surface dataspace: %s (%d)",
534 format, dataSpace, mDevice->info(), /*out*/&width, /*out*/&height)) {
542 err = mDevice->createStream(surface, width, height, format, dataSpace,
548 "Camera %d: Error creating output stream (%d x %d, fmt %x, dataSpace %x): %s (%d)",
549 mCameraId, width, height, format, dataSpace, strerror(-err), err);
572 android_dataspace dataSpace;
585 dataSpace = android_dataspace_t::HAL_DATASPACE_UNKNOWN;
592 err = mDevice->createStream(/*surface*/nullptr, width, height, format, dataSpace,
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ColorUtils.cpp 427 bool ColorUtils::convertDataSpaceToV0(android_dataspace &dataSpace) {
428 (void)sLegacyDataSpaceToV0.lookup(dataSpace, &dataSpace);
429 return (dataSpace & 0xC000FFFF) == 0;
464 // dataspace to use where the codec does in-the-background color space conversion)
493 android_dataspace dataSpace = (android_dataspace)(
496 (void)sLegacyDataSpaceToV0.rlookup(dataSpace, &dataSpace);
499 // update codec aspects based on dataspace
502 return dataSpace;
    [all...]
  /frameworks/av/include/media/stagefright/
ACodec.h 388 // gets dataspace guidance from codec and platform. |params| should be set up with the color
393 DescribeColorAspectsParams &params, android_dataspace *dataSpace /* nonnull */,
404 // set resulting color config into |outputFormat|. If |dataSpace| is non-null, it requests
405 // dataspace guidance from the codec and platform and sets it into |dataSpace|. Returns the
409 sp<AMessage> &outputFormat, android_dataspace *dataSpace);
412 // and sets resulting color config into |outputFormat|. For mediarecorder, also set dataspace
419 // video values for unspecified aspects and sets the dataspace to use in the input format.
420 // Also sets the dataspace into |dataSpace|
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
Camera2Client.h 180 status_t commandSetVideoFormatL(int format, android_dataspace dataSpace);
  /system/core/include/system/
window.h 816 * native_window_set_buffers_data_space(..., int dataSpace)
817 * All buffers queued after this call will be associated with the dataSpace
820 * dataSpace specifies additional information about the buffer that's dependent
824 * images. The default dataSpace is 0, HAL_DATASPACE_UNKNOWN, unless it has been
829 android_dataspace_t dataSpace)
832 dataSpace);
    [all...]
  /frameworks/native/libs/gui/
BufferQueueProducer.cpp 737 android_dataspace dataSpace;
743 input.deflate(&timestamp, &isAutoTimestamp, &dataSpace, &crop, &scalingMode,
802 BQ_LOGV("queueBuffer: slot=%d/%" PRIu64 " time=%" PRIu64 " dataSpace=%d"
804 slot, mCore->mFrameCounter + 1, timestamp, dataSpace,
818 // Override UNKNOWN dataspace with consumer default
819 if (dataSpace == HAL_DATASPACE_UNKNOWN) {
820 dataSpace = mCore->mDefaultBufferDataSpace;
839 item.mDataSpace = dataSpace;
858 mCore->mSharedBufferCache.dataspace = dataSpace;
    [all...]
  /frameworks/av/media/libstagefright/
ACodec.cpp     [all...]
OMXClient.cpp 119 node_id node, OMX_U32 port_index, android_dataspace dataSpace,
414 node_id node, OMX_U32 port_index, android_dataspace dataSpace,
417 node, port_index, dataSpace, bufferProducer, type);

Completed in 791 milliseconds

1 2 3