Home
last modified time | relevance | path

Searched refs:isHdr (Results 1 – 25 of 51) sorted by relevance

123

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dimage_source_hdr_test.cpp78 ASSERT_EQ(isHdr, false);
96 ASSERT_EQ(isHdr, false);
114 ASSERT_EQ(isHdr, false);
133 ASSERT_EQ(isHdr, true);
135 ASSERT_EQ(isHdr, false);
163 ASSERT_EQ(isHdr, false);
190 ASSERT_EQ(isHdr, false);
217 ASSERT_EQ(isHdr, false);
245 ASSERT_EQ(isHdr, true);
247 ASSERT_EQ(isHdr, false);
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/kits/js/common/ndk/
H A Dimage_source_native.cpp68 bool isHdr; member
277 Image_ErrorCode OH_ImageSourceInfo_GetDynamicRange(OH_ImageSource_Info *info, bool *isHdr) in OH_ImageSourceInfo_GetDynamicRange() argument
279 if (info == nullptr || isHdr == nullptr) { in OH_ImageSourceInfo_GetDynamicRange()
282 *isHdr = info->isHdr; in OH_ImageSourceInfo_GetDynamicRange()
535 info->isHdr = source->GetInnerImageSource()->IsHdrImage(); in OH_ImageSourceNative_GetImageInfo()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/filters/
H A Dsurface_decoder_filter.cpp131 bool isHdr = false; in Configure() local
132 configureParameter_->GetData(Tag::VIDEO_IS_HDR_VIVID, isHdr); in Configure()
133 if (isHdr) { in Configure()
/ohos5.0/foundation/multimedia/player_framework/services/services/engine_intf/
H A Drecorder_param.h121 explicit VidIsHdr(bool r) : RecorderParam(RecorderPublicParamType::VID_IS_HDR), isHdr(r) {} in VidIsHdr()
122 bool isHdr; member
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/
H A Drecorder_impl.cpp115 int32_t RecorderImpl::RecorderImpl::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() argument
118 FAKE_POINTER(this), sourceId, isHdr); in SetVideoIsHdr()
120 return recorderService_->SetVideoIsHdr(sourceId, isHdr); in SetVideoIsHdr()
H A Drecorder_impl.h37 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Dav_thumbnail_generator.cpp440 bool isHdr = srcSurfaceBuffer->GetFormat() == in GenerateAlignmentAvBuffer() local
442 if (isHdr) { in GenerateAlignmentAvBuffer()
546 bool isHdr = false; in CopySurfaceBufferPixels() local
547 (void)avBuffer->meta_->Get<Tag::VIDEO_IS_HDR_VIVID>(isHdr); in CopySurfaceBufferPixels()
565 int32_t lineByteCount = isHdr ? stride : width; in CopySurfaceBufferPixels()
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h76 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
157 bool isHdr = false; member
H A Drecorder_server.cpp260 int32_t RecorderServer::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() argument
263 FAKE_POINTER(this), sourceId, isHdr); in SetVideoIsHdr()
267 config_.isHdr = isHdr; in SetVideoIsHdr()
268 VidIsHdr vidIsHdr(isHdr); in SetVideoIsHdr()
1016 dumpString += "RecorderServer isHdr is: " + std::to_string(config_.isHdr) + "\n"; in DumpInfo()
1146 if (config_.isHdr) { in SetMetaDataReport()
/ohos5.0/foundation/multimedia/image_framework/frameworks/kits/js/common/pixelmap_ndk/
H A Dpixelmap_native.cpp75 bool isHdr = false; member
382 Image_ErrorCode OH_PixelmapImageInfo_GetDynamicRange(OH_Pixelmap_ImageInfo *info, bool *isHdr) in OH_PixelmapImageInfo_GetDynamicRange() argument
384 if (info == nullptr || isHdr == nullptr) { in OH_PixelmapImageInfo_GetDynamicRange()
387 *isHdr = info->isHdr; in OH_PixelmapImageInfo_GetDynamicRange()
538 imageInfo->isHdr = pixelmap->GetInnerPixelmap()->IsHdr(); in OH_PixelmapNative_GetImageInfo()
/ohos5.0/docs/zh-cn/application-dev/media/image/
H A Dimage-decoding.md148 console.log("pixelmap isHdr:" + info.isHdr);
H A Dimage-structure-c.md127 | bool | isHdr | 是否为高动态范围的信息 | [OH_ImageSourceInfo_GetDynamicRange](../../reference/apis-image-kit/…
212 | bool | isHdr | 是否为高动态范围的信息 | [OH_PixelmapImageInfo_GetDynamicRange](../../reference/apis-image-ki…
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.cpp130 int32_t RecorderClient::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() argument
135 MEDIA_LOGD("SetVideoIsHdr sourceId(%{public}d), isHdr(%{public}d)", sourceId, isHdr); in SetVideoIsHdr()
136 return recorderProxy_->SetVideoIsHdr(sourceId, isHdr); in SetVideoIsHdr()
H A Drecorder_client.h38 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/avmetadatahelper/
H A Davmetadatahelper_impl.h49 bool isHdr = false; member
H A Davmetadatahelper_impl.cpp219 bufferMeta->Get<Tag::VIDEO_IS_HDR_VIVID>(pixelMapInfo.isHdr); in CreatePixelMapYuv()
220 pixelMapInfo.isHdr &= frameBuffer->memory_->GetSurfaceBuffer() != nullptr; in CreatePixelMapYuv()
225 if (pixelMapInfo.isHdr) { in CreatePixelMapYuv()
/ohos5.0/foundation/multimedia/image_framework/interfaces/kits/native/include/image/
H A Dimage_source_native.h137 Image_ErrorCode OH_ImageSourceInfo_GetDynamicRange(OH_ImageSource_Info *info, bool *isHdr);
H A Dpixelmap_native.h591 Image_ErrorCode OH_PixelmapImageInfo_GetDynamicRange(OH_Pixelmap_ImageInfo *info, bool *isHdr);
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_thumbnail/include/
H A Dthumbnail_data.h134 EXPORT bool isHdr {false};
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h187 virtual int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_proxy.h35 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
H A Drecorder_service_stub.cpp273 int32_t RecorderServiceStub::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() argument
276 return recorderServer_->SetVideoIsHdr(sourceId, isHdr); in SetVideoIsHdr()
572 bool isHdr = data.ReadBool(); in SetVideoIsHdr() local
573 reply.WriteInt32(SetVideoIsHdr(sourceId, isHdr)); in SetVideoIsHdr()
H A Di_standard_recorder_service.h90 virtual int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) = 0;
/ohos5.0/docs/en/application-dev/media/image/
H A Dimage-decoding.md148 console.log("pixelmap isHdr:" + info.isHdr);
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/transcoder/
H A Dhitranscoder_impl.cpp341 bool isHdr = false; in ConfigureInputVideoMetaData() local
342 trackInfos[index]->GetData(Tag::VIDEO_IS_HDR_VIVID, isHdr); in ConfigureInputVideoMetaData()
343 if (isHdr) { in ConfigureInputVideoMetaData()

123