Home
last modified time | relevance | path

Searched refs:raw_format (Results 1 – 7 of 7) 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.h220 int takeBackendPic_internal(bool *JpegMemOpt, char *raw_format);
222 void checkIntPicPending(bool JpegMemOpt, char *raw_format);
DQCamera2HWI.cpp4971 char raw_format[PROPERTY_VALUE_MAX]; in Int_Pic_thread() local
4973 memset(raw_format, 0, sizeof(raw_format)); in Int_Pic_thread()
4975 rc = hw->takeBackendPic_internal(&JpegMemOpt, &raw_format[0]); in Int_Pic_thread()
4977 hw->checkIntPicPending(JpegMemOpt, &raw_format[0]); in Int_Pic_thread()
5038 void QCamera2HardwareInterface::checkIntPicPending(bool JpegMemOpt, char *raw_format) in checkIntPicPending() argument
5080 property_set("persist.camera.raw.format", raw_format); in checkIntPicPending()
5109 int QCamera2HardwareInterface::takeBackendPic_internal(bool *JpegMemOpt, char *raw_format) in takeBackendPic_internal() argument
5159 property_get("persist.camera.raw.format", raw_format, "17"); in takeBackendPic_internal()
DQCameraParameters.cpp9991 char raw_format[PROPERTY_VALUE_MAX]; in getStreamFormat() local
9993 memset(raw_format, 0, sizeof(raw_format)); in getStreamFormat()
9995 property_get("persist.camera.raw.format", raw_format, "17"); in getStreamFormat()
9996 rawFormat = atoi(raw_format); in getStreamFormat()