Home
last modified time | relevance | path

Searched refs:raw_format (Results 1 – 8 of 8) sorted by relevance

/hardware/intel/common/libmix/mix_video/src/
Dmixvideoconfigparamsdec.c48 self->raw_format = 0; in mix_videoconfigparamsdec_init()
163 this_target->raw_format = this_src->raw_format; in mix_videoconfigparamsdec_copy()
251 if (this_first->raw_format != this_second->raw_format) { in mix_videoconfigparamsdec_equal()
462 guint raw_format) { in mix_videoconfigparamsdec_set_raw_format() argument
466 obj->raw_format = raw_format; in mix_videoconfigparamsdec_set_raw_format()
471 guint *raw_format) { in mix_videoconfigparamsdec_get_raw_format() argument
472 MIX_VIDEOCONFIGPARAMSDEC_GETTER_CHECK_INPUT (obj, raw_format); in mix_videoconfigparamsdec_get_raw_format()
473 *raw_format = obj->raw_format; in mix_videoconfigparamsdec_get_raw_format()
Dmixvideoconfigparamsenc.c60 self->raw_format = MIX_RAW_TARGET_FORMAT_YUV420; in mix_videoconfigparamsenc_init()
180 this_target->raw_format = this_src->raw_format; in mix_videoconfigparamsenc_copy()
312 if (this_first->raw_format != this_second->raw_format) { in mix_videoconfigparamsenc_equal()
662 MixRawTargetFormat raw_format) { in mix_videoconfigparamsenc_set_raw_format() argument
664 obj->raw_format = raw_format; in mix_videoconfigparamsenc_set_raw_format()
669 MixRawTargetFormat * raw_format) { in mix_videoconfigparamsenc_get_raw_format() argument
670 MIX_VIDEOCONFIGPARAMSENC_GETTER_CHECK_INPUT (obj, raw_format); in mix_videoconfigparamsenc_get_raw_format()
671 *raw_format = obj->raw_format; in mix_videoconfigparamsenc_get_raw_format()
Dmixvideoconfigparamsdec.h80 guint raw_format; member
170 guint raw_format);
173 guint *raw_format);
Dmixvideoconfigparamsenc.h76 MixRawTargetFormat raw_format; member
240 MixRawTargetFormat raw_format);
243 MixRawTargetFormat * raw_format);
/hardware/qcom/camera/QCamera2/HAL/
DQCamera2HWI.h227 int takeBackendPic_internal(bool *JpegMemOpt, char *raw_format);
229 void checkIntPicPending(bool JpegMemOpt, char *raw_format);
DQCamera2HWI.cpp3492 char raw_format[PROPERTY_VALUE_MAX]; in Int_Pic_thread() local
3494 memset(raw_format, 0, sizeof(raw_format)); in Int_Pic_thread()
3496 rc = hw->takeBackendPic_internal(&JpegMemOpt, &raw_format[0]); in Int_Pic_thread()
3498 hw->checkIntPicPending(JpegMemOpt, &raw_format[0]); in Int_Pic_thread()
3553 void QCamera2HardwareInterface::checkIntPicPending(bool JpegMemOpt, char *raw_format) in checkIntPicPending() argument
3593 property_set("persist.camera.raw.format", raw_format); in checkIntPicPending()
3624 int QCamera2HardwareInterface::takeBackendPic_internal(bool *JpegMemOpt, char *raw_format) in takeBackendPic_internal() argument
3670 property_get("persist.camera.raw.format", raw_format, "16"); in takeBackendPic_internal()
DQCameraParameters.cpp8870 char raw_format[PROPERTY_VALUE_MAX]; in getStreamFormat() local
8872 memset(raw_format, 0, sizeof(raw_format)); in getStreamFormat()
8874 property_get("persist.camera.raw.format", raw_format, "16"); in getStreamFormat()
8875 rawFormat = atoi(raw_format); in getStreamFormat()
/hardware/qcom/camera/QCamera2/HAL3/
DQCamera3HWI.cpp6575 uint8_t raw_format = QCAMERA3_OPAQUE_RAW_FORMAT_LEGACY; in initStaticMetadata() local
6585 raw_format = QCAMERA3_OPAQUE_RAW_FORMAT_LEGACY; in initStaticMetadata()
6594 raw_format = QCAMERA3_OPAQUE_RAW_FORMAT_MIPI; in initStaticMetadata()
6601 staticInfo.update(QCAMERA3_OPAQUE_RAW_FORMAT, &raw_format, 1); in initStaticMetadata()