Home
last modified time | relevance | path

Searched refs:baseCtx (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/interfaces/innerkits/include/
H A Dimage_source.h314 bool ApplyGainMap(ImageHdrType hdrType, ImagePlugin::DecodeContext& baseCtx,
316 bool ComposeHdrImage(ImageHdrType hdrType, ImagePlugin::DecodeContext& baseCtx,
/ohos5.0/base/request/request/frameworks/js/napi/src/
H A Djs_task.cpp417 napi_value baseCtx = nullptr; in GetTaskOutput() local
418 napi_get_reference_value(context->env_, context->baseContext, &baseCtx); in GetTaskOutput()
419 napi_value args[2] = { baseCtx, config }; in GetTaskOutput()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dimage_source_test.cpp2104 ImagePlugin::DecodeContext baseCtx; variable
2110 bool ret = imageSource->ApplyGainMap(hdrType, baseCtx, hdrCtx, scale);
2112 baseCtx.allocatorType = AllocatorType::DEFAULT;
2113 ret = imageSource->ComposeHdrImage(hdrType, baseCtx, gainMapCtx, hdrCtx, metadata);
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/codec/src/
H A Dimage_source.cpp3823 bool ImageSource::ApplyGainMap(ImageHdrType hdrType, DecodeContext& baseCtx, DecodeContext& hdrCtx,… in ApplyGainMap() argument
3845 bool result = ComposeHdrImage(hdrType, baseCtx, gainMapCtx, hdrCtx, metadata); in ApplyGainMap()
3916 bool ImageSource::ComposeHdrImage(ImageHdrType hdrType, DecodeContext& baseCtx, DecodeContext& gain… in ComposeHdrImage() argument
3924 …if (baseCtx.allocatorType != AllocatorType::DMA_ALLOC || gainMapCtx.allocatorType != AllocatorType… in ComposeHdrImage()
3927 CM_ColorSpaceType baseCmColor = ConvertColorSpaceType(baseCtx.grColorSpaceName, true); in ComposeHdrImage()
3929 sptr<SurfaceBuffer> baseSptr(reinterpret_cast<SurfaceBuffer*>(baseCtx.pixelsBuffer.context)); in ComposeHdrImage()