Home
last modified time | relevance | path

Searched refs:SurfaceBuffer (Results 1 - 25 of 504) sorted by relevance

12345678910>>...21

/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/include/
H A Dvpe_utils.h36 sptr<SurfaceBuffer> sdr;
37 sptr<SurfaceBuffer> gainmap;
38 sptr<SurfaceBuffer> hdr;
49 int32_t ColorSpaceConverterImageProcess(sptr<SurfaceBuffer>& input, sptr<SurfaceBuffer>& output);
50 int32_t DetailEnhancerImageProcess(sptr<SurfaceBuffer>& input, sptr<SurfaceBuffer>& output, int32_t level);
51 static bool SetSbColorSpaceType(sptr<SurfaceBuffer>& buffer,
53 static bool GetSbColorSpaceType(const sptr<SurfaceBuffer>& buffer,
55 static bool SetSbMetadataType(sptr<SurfaceBuffer>
[all...]
/foundation/multimedia/media_foundation/video_processing_engine/framework/capi/image_processing/include/
H A Dimage_processing_native.h58 sptr<SurfaceBuffer>& surfaceBuffer);
60 sptr<SurfaceBuffer>& surfaceBuffer);
61 static ImageProcessing_ErrorCode SetSurfaceBufferToPixelMap(const sptr<SurfaceBuffer>& surfaceBuffer,
68 virtual ImageProcessing_ErrorCode ConvertColorSpace(sptr<SurfaceBuffer>& sourceImage,
69 sptr<SurfaceBuffer>& destinationImage);
70 virtual ImageProcessing_ErrorCode Compose(sptr<SurfaceBuffer>& sourceImage, sptr<SurfaceBuffer>& sourceGainmap,
71 sptr<SurfaceBuffer>& destinationImage);
72 virtual ImageProcessing_ErrorCode Decompose(sptr<SurfaceBuffer>& sourceImage,
73 sptr<SurfaceBuffer>
[all...]
/foundation/multimedia/image_effect/frameworks/native/utils/common/
H A Dvpe_helper.h33 static int32_t ColorSpaceConverterComposeImage(int32_t instance, sptr<SurfaceBuffer> &inputSdrImage,
34 sptr<SurfaceBuffer> &inputGainmap, sptr<SurfaceBuffer> &outputHdrImage, bool legacy);
35 static int32_t ColorSpaceConverterDecomposeImage(int32_t instance, sptr<SurfaceBuffer> &inputImage,
36 sptr<SurfaceBuffer> &outputSdrImage, sptr<SurfaceBuffer> &outputGainmap);
37 static int32_t ColorSpaceConverterProcessImage(int32_t instance, sptr<SurfaceBuffer> &inputImage,
38 sptr<SurfaceBuffer> &outputSdrImage);
42 static int32_t MetadataGeneratorProcessImage(int32_t instance, sptr<SurfaceBuffer> &inputImage);
/foundation/graphic/graphic_surface/interfaces/inner_api/surface/
H A Dsurface_buffer.h35 class SurfaceBuffer : public RefBase { class
82 static SurfaceBuffer* NativeBufferToSurfaceBuffer(OH_NativeBuffer* buffer) in NativeBufferToSurfaceBuffer()
84 return reinterpret_cast<SurfaceBuffer *>(buffer); in NativeBufferToSurfaceBuffer()
87 static const SurfaceBuffer* NativeBufferToSurfaceBuffer(OH_NativeBuffer const* buffer) in NativeBufferToSurfaceBuffer()
89 return reinterpret_cast<SurfaceBuffer const*>(buffer); in NativeBufferToSurfaceBuffer()
94 static sptr<SurfaceBuffer> Create();
126 SurfaceBuffer() {} in SurfaceBuffer() function in OHOS::SurfaceBuffer
127 SurfaceBuffer(const SurfaceBuffer&) = delete;
128 SurfaceBuffer
[all...]
H A Diconsumer_surface.h32 sptr<SurfaceBuffer> buffer;
44 virtual GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
47 virtual GSError CancelBuffer(sptr<SurfaceBuffer>& buffer) = 0;
49 virtual GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
52 virtual GSError AcquireBuffer(sptr<SurfaceBuffer>& buffer, int32_t &fence,
54 virtual GSError ReleaseBuffer(sptr<SurfaceBuffer>& buffer, int32_t fence) = 0;
56 virtual GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
58 virtual GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
60 virtual GSError AcquireBuffer(sptr<SurfaceBuffer>& buffer, sptr<SyncFence>& fence,
62 virtual GSError ReleaseBuffer(sptr<SurfaceBuffer>
[all...]
H A Dsurface.h39 virtual GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
42 virtual GSError RequestBuffers(std::vector<sptr<SurfaceBuffer>> &buffers,
45 virtual GSError CancelBuffer(sptr<SurfaceBuffer>& buffer) = 0;
47 virtual GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
50 virtual GSError AcquireBuffer(sptr<SurfaceBuffer>& buffer, int32_t &fence,
52 virtual GSError ReleaseBuffer(sptr<SurfaceBuffer>& buffer, int32_t fence) = 0;
54 virtual GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
56 virtual GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
58 virtual GSError AcquireBuffer(sptr<SurfaceBuffer>& buffer, sptr<SyncFence>& fence,
60 virtual GSError ReleaseBuffer(sptr<SurfaceBuffer>
[all...]
/foundation/multimedia/media_foundation/video_processing_engine/framework/capi/image_processing/
H A Dimage_processing_native.cpp121 sptr<SurfaceBuffer> srcBuffer = nullptr; in ConvertColorSpace()
126 sptr<SurfaceBuffer> dstBuffer = nullptr; in ConvertColorSpace()
148 sptr<SurfaceBuffer> srcBuffer = nullptr; in Compose()
153 sptr<SurfaceBuffer> srcGainmap = nullptr; in Compose()
158 sptr<SurfaceBuffer> dstBuffer = nullptr; in Compose()
180 sptr<SurfaceBuffer> srcBuffer = nullptr; in Decompose()
185 sptr<SurfaceBuffer> dstBuffer = nullptr; in Decompose()
191 sptr<SurfaceBuffer> dstGainmap = nullptr; in Decompose()
214 sptr<SurfaceBuffer> srcBuffer = nullptr; in GenerateMetadata()
230 sptr<SurfaceBuffer> srcBuffe in EnhanceDetail()
[all...]
/foundation/graphic/graphic_surface/surface/include/
H A Dproducer_surface_delegator.h33 GSError DequeueBuffer(int32_t slot, sptr<SurfaceBuffer> buffer);
35 GSError ReleaseBuffer(const sptr<SurfaceBuffer> &buffer, const sptr<SyncFence> &fence);
46 std::map<int32_t, std::vector<sptr<SurfaceBuffer>>> map_;
47 std::vector<sptr<SurfaceBuffer>> pendingReleaseBuffer_;
54 void AddBufferLocked(const sptr<SurfaceBuffer>& buffer, int32_t slot);
55 sptr<SurfaceBuffer> GetBufferLocked(int32_t slot);
56 int32_t GetSlotLocked(const sptr<SurfaceBuffer>& buffer);
57 GSError RetryFlushBuffer(sptr<SurfaceBuffer>& buffer, int32_t fence, BufferFlushConfig& config);
H A Dmetadata_helper.h62 static GSError SetColorSpaceInfo(sptr<SurfaceBuffer>& buffer,
64 static GSError GetColorSpaceInfo(const sptr<SurfaceBuffer>& buffer,
67 static GSError SetColorSpaceType(sptr<SurfaceBuffer>& buffer,
69 static GSError GetColorSpaceType(const sptr<SurfaceBuffer>& buffer,
72 static GSError SetHDRMetadataType(sptr<SurfaceBuffer>& buffer,
74 static GSError GetHDRMetadataType(const sptr<SurfaceBuffer>& buffer,
77 static GSError SetHDRStaticMetadata(sptr<SurfaceBuffer>& buffer,
79 static GSError GetHDRStaticMetadata(const sptr<SurfaceBuffer>& buffer,
82 static GSError SetHDRDynamicMetadata(sptr<SurfaceBuffer>& buffer, const std::vector<uint8_t>& hdrDynamicMetadata);
83 static GSError GetHDRDynamicMetadata(const sptr<SurfaceBuffer>
[all...]
H A Dproducer_surface.h44 GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
47 GSError RequestBuffers(std::vector<sptr<SurfaceBuffer>> &buffers,
50 GSError CancelBuffer(sptr<SurfaceBuffer>& buffer) override;
52 GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
55 GSError FlushBuffers(const std::vector<sptr<SurfaceBuffer>> &buffers,
58 SURFACE_HIDDEN GSError AcquireBuffer(sptr<SurfaceBuffer>& buffer, int32_t &fence,
63 SURFACE_HIDDEN GSError ReleaseBuffer(sptr<SurfaceBuffer>& buffer, int32_t fence) override
68 GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
70 GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
72 GSError GetLastFlushedBuffer(sptr<SurfaceBuffer>
[all...]
H A Dconsumer_surface.h40 SURFACE_HIDDEN GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
46 SURFACE_HIDDEN GSError RequestBuffers(std::vector<sptr<SurfaceBuffer>> &buffers,
52 SURFACE_HIDDEN GSError CancelBuffer(sptr<SurfaceBuffer>& buffer) override
57 SURFACE_HIDDEN GSError FlushBuffer(sptr<SurfaceBuffer>& buffer, int32_t fence, BufferFlushConfig &config) override
62 GSError AcquireBuffer(sptr<SurfaceBuffer>& buffer, int32_t &fence,
65 GSError ReleaseBuffer(sptr<SurfaceBuffer>& buffer, int32_t fence) override;
67 SURFACE_HIDDEN GSError RequestBuffer(sptr<SurfaceBuffer>& buffer,
73 SURFACE_HIDDEN GSError FlushBuffer(sptr<SurfaceBuffer>& buffer,
79 SURFACE_HIDDEN GSError FlushBuffer(sptr<SurfaceBuffer>& buffer, const sptr<SyncFence>& fence,
85 SURFACE_HIDDEN GSError FlushBuffers(const std::vector<sptr<SurfaceBuffer>>
[all...]
H A Dconsumer_surface_delegator.h29 GSError QueueBuffer(sptr<SurfaceBuffer>& buffer, int32_t fenceFd);
31 GSError CancelBuffer(sptr<SurfaceBuffer>& buffer);
32 GSError DetachBuffer(sptr<SurfaceBuffer>& buffer);
37 std::map<int32_t, sptr<SurfaceBuffer>> slotBufferMap_;
/foundation/multimedia/image_effect/test/unittest/mock/include/
H A Dmock_producer_surface.h30 MOCK_METHOD3(RequestBuffer, GSError(sptr<SurfaceBuffer>& buffer, sptr<SyncFence>& fence,
32 MOCK_METHOD3(FlushBuffer, GSError(sptr<SurfaceBuffer>& buffer, int32_t fence, BufferFlushConfig &config));
34 static void AllocDmaMemory(sptr<SurfaceBuffer> &buffer);
35 static void ReleaseDmaBuffer(sptr<SurfaceBuffer> &buffer);
37 sptr<SurfaceBuffer> buffer_;
/foundation/multimedia/image_framework/interfaces/innerkits/include/
H A Dpicture.h25 class SurfaceBuffer;
38 NATIVEEXPORT static std::unique_ptr<Picture> Create(sptr<SurfaceBuffer> &surfaceBuffer);
39 NATIVEEXPORT static std::unique_ptr<PixelMap> SurfaceBuffer2PixelMap(sptr<SurfaceBuffer> &surfaceBuffer);
50 NATIVEEXPORT int32_t SetExifMetadata(sptr<SurfaceBuffer> &surfaceBuffer);
53 NATIVEEXPORT bool SetMaintenanceData(sptr<SurfaceBuffer> &surfaceBuffer);
54 NATIVEEXPORT sptr<SurfaceBuffer> GetMaintenanceData() const;
59 sptr<SurfaceBuffer> maintenanceData_;
/foundation/multimedia/image_effect/interfaces/inner_api/native/colorspace/
H A Dcolorspace_helper.h44 IMAGE_EFFECT_EXPORT static ErrorCode SetSurfaceBufferMetadataType(SurfaceBuffer *sb,
46 IMAGE_EFFECT_EXPORT static ErrorCode GetSurfaceBufferMetadataType(SurfaceBuffer *sb,
48 IMAGE_EFFECT_EXPORT static ErrorCode SetSurfaceBufferColorSpaceType(SurfaceBuffer *sb,
50 IMAGE_EFFECT_EXPORT static ErrorCode GetSurfaceBufferColorSpaceType(SurfaceBuffer *sb,
54 static ErrorCode SetHDRDynamicMetadata(SurfaceBuffer *sb, const std::vector<uint8_t> &hdrDynamicMetadata);
57 static ErrorCode SetHDRStaticMetadata(SurfaceBuffer *sb, const std::vector<uint8_t> &hdrStaticMetadata);
60 IMAGE_EFFECT_EXPORT static ErrorCode UpdateMetadata(SurfaceBuffer *input, const EffectColorSpace &colorSpace);
H A Dcolorspace_converter.h32 ErrorCode ComposeHdrImage(const EffectBuffer *inputSdr, const SurfaceBuffer *inputGainmap, EffectBuffer *outputHdr);
36 SurfaceBuffer **outputGainmap);
40 IMAGE_EFFECT_EXPORT std::shared_ptr<MemoryData> GetMemoryData(SurfaceBuffer *sb);
47 const SurfaceBuffer *inputGainmap, EffectBuffer *outputHdr);
49 std::shared_ptr<EffectBuffer> &outputSdr, SurfaceBuffer **outputGainmap);
/foundation/multimedia/camera_framework/services/camera_service/include/avcodec/common/
H A Dframe_record.h40 explicit FrameRecord(sptr<SurfaceBuffer> videoBuffer, int64_t timestamp, GraphicTransformType type);
46 void DeepCopyBuffer(sptr<SurfaceBuffer> newSurfaceBuffer, sptr<SurfaceBuffer> surfaceBuffer) const;
78 inline sptr<SurfaceBuffer> GetSurfaceBuffer() in GetSurfaceBuffer()
84 inline void SetSurfaceBuffer(sptr<SurfaceBuffer> buffer) in SetSurfaceBuffer()
137 inline void SetMetaBuffer(sptr<SurfaceBuffer> buffer) in SetMetaBuffer()
143 inline sptr<SurfaceBuffer> GetMetaBuffer() in GetMetaBuffer()
194 sptr<SurfaceBuffer> videoBuffer_;
201 sptr<SurfaceBuffer> metaBuffer_;
/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Dav_thumbnail_generator.h67 sptr<SurfaceBuffer> surfaceBuffer_;
76 const sptr<SurfaceBuffer> &surfaceBuffer, uint8_t *dstNV12, int32_t strideWidth, int32_t strideHeight);
77 int32_t GetYuvDataAlignStride(const sptr<SurfaceBuffer> &surfaceBuffer);
87 void CopySurfaceBufferInfo(sptr<SurfaceBuffer> &source, sptr<SurfaceBuffer> &dst);
88 bool GetSbStaticMetadata(const sptr<SurfaceBuffer> &buffer, std::vector<uint8_t> &staticMetadata);
89 bool GetSbDynamicMetadata(const sptr<SurfaceBuffer> &buffer, std::vector<uint8_t> &dynamicMetadata);
90 bool SetSbStaticMetadata(sptr<SurfaceBuffer> &buffer, const std::vector<uint8_t> &staticMetadata);
91 bool SetSbDynamicMetadata(sptr<SurfaceBuffer> &buffer, const std::vector<uint8_t> &dynamicMetadata);
/foundation/multimedia/media_foundation/src/buffer/avbuffer/
H A Dav_surface_memory.cpp55 sptr<SurfaceBuffer> surfaceBuffer = SurfaceBuffer::Create(); in Alloc()
56 FALSE_RETURN_V_MSG_E(surfaceBuffer != nullptr, nullptr, "No memory for new SurfaceBuffer!"); in Alloc()
68 sptr<SurfaceBuffer> surfaceBuffer = sptr<SurfaceBuffer>(static_cast<SurfaceBuffer *>(ptr)); in Free()
97 surfaceBuffer_ = sptr<SurfaceBuffer>(static_cast<SurfaceBuffer *>(allocator_->Alloc(0))); in Init()
112 surfaceBuffer_ = SurfaceBuffer::Create(); in InitSurfaceBuffer()
113 FALSE_RETURN_V_MSG_E(surfaceBuffer_ != nullptr, Status::ERROR_NO_MEMORY, "No memory for new SurfaceBuffer!"); in InitSurfaceBuffer()
[all...]
/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dphoto_listener_impl.h34 void BufferRelease(sptr<SurfaceBuffer>& buffer) override
57 void ExecutePhoto(sptr<SurfaceBuffer> surfaceBuffer, int64_t timestamp);
58 void ExecutePhotoAsset(sptr<SurfaceBuffer> surfaceBuffer, CameraBufferExtraData extraData,
60 void DeepCopyBuffer(sptr<SurfaceBuffer> newSurfaceBuffer, sptr<SurfaceBuffer> surfaceBuffer);
61 void CreateMediaLibrary(sptr<SurfaceBuffer> surfaceBuffer, BufferHandle *bufferHandle,
64 CameraBufferExtraData GetCameraBufferExtraData(const sptr<SurfaceBuffer> &surfaceBuffer);
83 void ExecuteRawPhoto(sptr<SurfaceBuffer> surfaceBuffer, int64_t timestamp);
/foundation/graphic/graphic_surface/surface/src/
H A Dmetadata_helper.cpp48 GSError MetadataHelper::SetColorSpaceInfo(sptr<SurfaceBuffer>& buffer, const CM_ColorSpaceInfo& colorSpaceInfo) in SetColorSpaceInfo()
62 GSError MetadataHelper::GetColorSpaceInfo(const sptr<SurfaceBuffer>& buffer, CM_ColorSpaceInfo& colorSpaceInfo) in GetColorSpaceInfo()
76 GSError MetadataHelper::SetColorSpaceType(sptr<SurfaceBuffer>& buffer, const CM_ColorSpaceType& colorSpaceType) in SetColorSpaceType()
90 GSError MetadataHelper::GetColorSpaceType(const sptr<SurfaceBuffer>& buffer, CM_ColorSpaceType& colorSpaceType) in GetColorSpaceType()
104 GSError MetadataHelper::SetHDRMetadataType(sptr<SurfaceBuffer>& buffer, const CM_HDR_Metadata_Type& hdrMetadataType) in SetHDRMetadataType()
118 GSError MetadataHelper::GetHDRMetadataType(const sptr<SurfaceBuffer>& buffer, CM_HDR_Metadata_Type& hdrMetadataType) in GetHDRMetadataType()
132 GSError MetadataHelper::SetHDRStaticMetadata(sptr<SurfaceBuffer>& buffer, in SetHDRStaticMetadata()
147 GSError MetadataHelper::GetHDRStaticMetadata(const sptr<SurfaceBuffer>& buffer, in GetHDRStaticMetadata()
162 GSError MetadataHelper::SetHDRDynamicMetadata(sptr<SurfaceBuffer>& buffer, in SetHDRDynamicMetadata()
172 GSError MetadataHelper::GetHDRDynamicMetadata(const sptr<SurfaceBuffer>
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_base_render_util.h46 sptr<SurfaceBuffer> buffer = nullptr;
47 sptr<SurfaceBuffer> preBuffer = nullptr;
64 sptr<OHOS::SurfaceBuffer> buffer;
123 static bool IsBufferValid(const sptr<SurfaceBuffer>& buffer);
130 const sptr<IConsumerSurface>& consumer, const sptr<SurfaceBuffer>& buffer);
133 static Drawing::Matrix GetGravityMatrix(Gravity gravity, const sptr<SurfaceBuffer>& buffer, const RectF& bounds);
138 static Drawing::BitmapFormat GenerateDrawingBitmapFormat(const sptr<OHOS::SurfaceBuffer>& buffer);
146 static bool ConvertBufferToBitmap(sptr<SurfaceBuffer> buffer, std::vector<uint8_t>& newBuffer,
161 static bool WriteSurfaceBufferToPng(sptr<SurfaceBuffer>& buffer, uint64_t id = 0);
189 static bool CreateYuvToRGBABitMap(sptr<OHOS::SurfaceBuffer> buffe
[all...]
/foundation/multimedia/player_framework/frameworks/native/avmetadatahelper/
H A Davmetadatahelper_impl.h84 sptr<SurfaceBuffer> CopySurfaceBuffer(sptr<SurfaceBuffer> &srcSurfaceBuffer);
90 std::shared_ptr<PixelMap> CreatePixelMapFromSurfaceBuffer(sptr<SurfaceBuffer> &mySurfaceBuffer,
92 void SetPixelMapYuvInfo(sptr<SurfaceBuffer> &surfaceBuffer, std::shared_ptr<PixelMap> pixelMap,
95 void CopySurfaceBufferInfo(sptr<SurfaceBuffer> &source, sptr<SurfaceBuffer> &dst);
96 bool GetSbStaticMetadata(sptr<SurfaceBuffer> &buffer, std::vector<uint8_t> &staticMetadata);
97 bool GetSbDynamicMetadata(sptr<SurfaceBuffer> &buffer, std::vector<uint8_t> &dynamicMetadata);
98 bool SetSbStaticMetadata(sptr<SurfaceBuffer> &buffer, const std::vector<uint8_t> &staticMetadata);
99 bool SetSbDynamicMetadata(sptr<SurfaceBuffer>
[all...]
/foundation/graphic/surface_lite/interfaces/kits/
H A Dsurface.h244 virtual SurfaceBuffer* RequestBuffer(uint8_t wait = 0) = 0;
251 * @param SurfaceBuffer Indicates the pointer to the buffer flushed by producers.
256 virtual int32_t FlushBuffer(SurfaceBuffer* buffer) = 0;
264 * @return Returns the pointer to the {@link SurfaceBuffer} object.
268 virtual SurfaceBuffer* AcquireBuffer() = 0;
273 * After a consumer has used a {@link SurfaceBuffer} object, the consumer can release it through
277 * @param SurfaceBuffer Indicates the pointer to the buffer released.
282 virtual bool ReleaseBuffer(SurfaceBuffer* buffer) = 0;
288 * @param SurfaceBuffer Indicates the pointer to the buffer to be released by producers.
292 virtual void CancelBuffer(SurfaceBuffer* buffe
[all...]
/foundation/multimedia/image_effect/frameworks/native/effect/manager/colorspace_manager/
H A Dcolorspace_converter.cpp60 SurfaceBuffer *AllocSurfaceBuffer(std::vector<std::shared_ptr<MemoryData>> &memoryDataArray, MemoryInfo &allocMemInfo, in AllocSurfaceBuffer()
75 auto *sb = static_cast<SurfaceBuffer *>(surfaceBuffer); in AllocSurfaceBuffer()
82 sptr<SurfaceBuffer> AllocSdrSurfaceBuffer(std::vector<std::shared_ptr<MemoryData>> &memoryDataArray, in AllocSdrSurfaceBuffer()
91 SurfaceBuffer *sb = AllocSurfaceBuffer(memoryDataArray, allocMemInfo, type, colorSpaceType); in AllocSdrSurfaceBuffer()
99 sptr<SurfaceBuffer> AllocGainmapSurfaceBuffer(std::vector<std::shared_ptr<MemoryData>> &memoryDataArray, in AllocGainmapSurfaceBuffer()
111 SurfaceBuffer *sb = AllocSurfaceBuffer(memoryDataArray, allocMemInfo, type, colorSpaceType); in AllocGainmapSurfaceBuffer()
119 void PrintColorSpaceInfo(const sptr<SurfaceBuffer> &surfaceBuffer, const std::string &tag) in PrintColorSpaceInfo()
135 const SurfaceBuffer *inputGainmap, EffectBuffer *outputHdr) in ComposeHdrImageInner()
142 sptr<SurfaceBuffer> sdrSb = inputSdr->extraInfo_->surfaceBuffer; in ComposeHdrImageInner()
143 sptr<SurfaceBuffer> gainmapS in ComposeHdrImageInner()
[all...]

Completed in 9 milliseconds

12345678910>>...21