/hardware/invensense/6515/libsensors_iio/software/core/driver/include/ |
D | log.h | 142 #define MPL_LOGV(fmt, ...) \ argument 146 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 152 #define MPL_LOGV(fmt, ...) \ 155 MPL_LOG(MPL_LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 158 #define MPL_LOGV(fmt, ...) \ 161 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 168 #define MPL_LOGV(fmt, ...) MPL_LOG(MPL_LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) 170 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) 181 #define MPL_LOGV_IF(cond, fmt, ...) \ argument 182 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0) [all …]
|
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/ |
D | log.h | 124 #define MPL_LOGV(fmt, ...) \ argument 128 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 132 #define MPL_LOGV(fmt, ...) \ 135 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 140 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) 150 #define MPL_LOGV_IF(cond, fmt, ...) \ argument 151 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0) 153 #define MPL_LOGV_IF(cond, fmt, ...) \ 155 ? MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) \ 164 #define MPL_LOGD(fmt, ...) MPL_LOG(LOG_DEBUG, MPL_LOG_TAG, fmt, ##__VA_ARGS__) argument [all …]
|
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-interface/inc/ |
D | mm_camera_dbg.h | 66 #define CLOGx(module, level, fmt, args...) \ argument 69 mm_camera_debug_log(module, level, __func__, __LINE__, fmt, ##args); \ 74 #define CLOGI(module, fmt, args...) \ argument 75 CLOGx(module, CAM_GLBL_DBG_INFO, fmt, ##args) 77 #define CLOGD(module, fmt, args...) \ argument 78 CLOGx(module, CAM_GLBL_DBG_DEBUG, fmt, ##args) 80 #define CLOGL(module, fmt, args...) \ argument 81 CLOGx(module, CAM_GLBL_DBG_LOW, fmt, ##args) 83 #define CLOGW(module, fmt, args...) \ argument 84 CLOGx(module, CAM_GLBL_DBG_WARN, fmt, ##args) [all …]
|
/hardware/st/secure_element2/secure_element/esehal/src/ |
D | log.h | 39 # define err(fmt, ...) say(ctx, LOG_ERR fmt, ## __VA_ARGS__) argument 40 # define warn(fmt, ...) say(ctx, LOG_WARN fmt, ## __VA_ARGS__) argument 41 # define notice(fmt, ...) say(ctx, LOG_NOTICE fmt, ## __VA_ARGS__) argument 42 # define info(fmt, ...) say(ctx, LOG_INFO fmt, ## __VA_ARGS__) argument 44 # define dbg(fmt, ...) say(ctx, LOG_DEBUG fmt, ## __VA_ARGS__) argument 46 # define dbg(fmt, ...) nosay(ctx, LOG_DEBUG fmt, ## __VA_ARGS__) argument 49 void vsay(struct se_gto_ctx *ctx, const char *fmt, va_list args); 53 say(struct se_gto_ctx *ctx, const char *fmt, ...) { in say() argument 56 va_start(args, fmt); in say() 57 vsay(ctx, fmt, args); in say() [all …]
|
/hardware/google/gfxstream/guest/mesa/src/util/ |
D | log.h | 57 #define mesa_loge(fmt, ...) mesa_log(MESA_LOG_ERROR, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 58 #define mesa_logw(fmt, ...) mesa_log(MESA_LOG_WARN, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 59 #define mesa_logi(fmt, ...) mesa_log(MESA_LOG_INFO, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 61 #define mesa_logd(fmt, ...) mesa_log(MESA_LOG_DEBUG, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 63 #define mesa_logd(fmt, ...) __mesa_log_use_args((fmt), ##__VA_ARGS__) argument 66 #define mesa_loge_v(fmt, va) mesa_log_v(MESA_LOG_ERROR, (MESA_LOG_TAG), (fmt), (va)) argument 67 #define mesa_logw_v(fmt, va) mesa_log_v(MESA_LOG_WARN, (MESA_LOG_TAG), (fmt), (va)) argument 68 #define mesa_logi_v(fmt, va) mesa_log_v(MESA_LOG_INFO, (MESA_LOG_TAG), (fmt), (va)) argument 70 #define mesa_logd_v(fmt, va) mesa_log_v(MESA_LOG_DEBUG, (MESA_LOG_TAG), (fmt), (va)) argument 72 #define mesa_logd_v(fmt, va) __mesa_log_use_args((fmt), (va)) argument [all …]
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/inc/ |
D | IPACM_Log.h | 70 #define IPACMDBG_DMESG(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 71 …snprintf(buffer_send,MAX_BUF_LEN,"%s:%d %s: " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS_… 73 printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); \ 78 #define PERROR(fmt) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 81 perror(fmt); 82 #define IPACMERR(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 83 …snprintf(buffer_send,MAX_BUF_LEN,"ERROR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__… 85 printf("ERROR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); 86 #define IPACMDBG_H(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 87 …snprintf(buffer_send,MAX_BUF_LEN,"%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS… [all …]
|
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/ |
D | IPACM_Log.h | 70 #define IPACMDBG_DMESG(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 71 …snprintf(buffer_send,MAX_BUF_LEN,"%s:%d %s: " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS_… 73 printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); \ 78 #define PERROR(fmt) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 81 perror(fmt); 82 #define IPACMERR(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 83 …snprintf(buffer_send,MAX_BUF_LEN,"ERROR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__… 85 printf("ERROR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); 86 #define IPACMDBG_H(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 87 …snprintf(buffer_send,MAX_BUF_LEN,"%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS… [all …]
|
/hardware/libhardware/modules/camera/3_4/ |
D | common.h | 23 #define HAL_LOGE(fmt, args...) do { \ argument 24 ALOGE("%s:%d: " fmt, __func__, __LINE__, ##args); \ 27 #define HAL_LOGE_IF(cond, fmt, args...) do { \ argument 28 ALOGE_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args); \ 31 #define HAL_LOGW(fmt, args...) do { \ argument 32 ALOGW("%s:%d: " fmt, __func__, __LINE__, ##args); \ 35 #define HAL_LOGW_IF(cond, fmt, args...) do { \ argument 36 ALOGW_IF(cond, "%s:%d: " fmt, __func__, __LINE__, ##args); \ 39 #define HAL_LOGI(fmt, args...) do { \ argument 40 ALOGI("%s:%d: " fmt, __func__, __LINE__, ##args); \ [all …]
|
/hardware/google/aemu/host-common/include/host-common/ |
D | logging.h | 20 typedef void (*gfxstream_logger_t)(const char* fmt, ...); 39 #define GFXSTREAM_LOG(file, severity, fmt, ...) \ argument 40 OutputLog(file, severity, __FILE__, __LINE__, 0, fmt, ##__VA_ARGS__) 44 #define GL_LOG(fmt, ...) GFXSTREAM_LOG(stderr, 'I', fmt, ##__VA_ARGS__) argument 51 #define DECODER_DEBUG_LOG(fmt, ...) GFXSTREAM_LOG(stderr, 'I', fmt, ##__VA_ARGS__) argument 58 #define DISPATCH_DEBUG_LOG(fmt, ...) GFXSTREAM_LOG(stderr, 'I', fmt, ##__VA_ARGS__) argument 63 #define ERR(fmt, ...) \ argument 65 GFXSTREAM_LOG(stderr, 'E', fmt, ##__VA_ARGS__); \ 68 #define WARN(fmt, ...) \ argument 70 GFXSTREAM_LOG(stderr, 'W', fmt, ##__VA_ARGS__); \ [all …]
|
/hardware/google/aemu/base/include/aemu/base/logging/ |
D | CLog.h | 39 LOGGING_API void __emu_log_print(LogSeverity prio, const char* file, int line, const char* fmt, ...) 43 #define EMULOG(priority, fmt, ...) \ argument 44 __emu_log_print(priority, __FILE__, __LINE__, fmt, ##__VA_ARGS__); 49 #define dprint(fmt, ...) \ argument 51 EMULOG(EMULATOR_LOG_DEBUG, fmt, ##__VA_ARGS__) \ 55 #define dinfo(fmt, ...) \ argument 57 EMULOG(EMULATOR_LOG_INFO, fmt, ##__VA_ARGS__) \ 61 #define dwarning(fmt, ...) \ argument 63 EMULOG(EMULATOR_LOG_WARNING, fmt, ##__VA_ARGS__) \ 67 #define derror(fmt, ...) \ argument [all …]
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipanat/inc/ |
D | ipa_nat_logi.h | 53 #define PERROR(fmt) printf("%s:%d %s()", __FILE__, __LINE__, __FUNCTION__);\ argument 54 perror(fmt); 56 #define IPAERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_… argument 59 #define IPADBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__… argument 61 #define IPADUMP(fmt, ...) printf(fmt, ##__VA_ARGS__); argument 64 #define IPADBG(fmt, ...) 65 #define IPADUMP(fmt, ...)
|
/hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/inc/ |
D | ipa_nat_logi.h | 53 #define PERROR(fmt) printf("%s:%d %s()", __FILE__, __LINE__, __FUNCTION__);\ argument 54 perror(fmt); 56 #define IPAERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_… argument 59 #define IPADBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__… argument 61 #define IPADUMP(fmt, ...) printf(fmt, ##__VA_ARGS__); argument 64 #define IPADBG(fmt, ...) 65 #define IPADUMP(fmt, ...)
|
/hardware/google/gfxstream/guest/mesa/src/util/perf/ |
D | gpuvis_trace_utils.h | 81 GPUVIS_EXTERN int gpuvis_trace_printf( const char *fmt, ... ) GPUVIS_ATTR_PRINTF( 1, 2 ); 82 GPUVIS_EXTERN int gpuvis_trace_vprintf( const char *fmt, va_list ap ) GPUVIS_ATTR_PRINTF( 1, 0 ); 85 GPUVIS_EXTERN int gpuvis_trace_duration_printf( float duration, const char *fmt, ... ) GPUVIS_ATTR_… 86 GPUVIS_EXTERN int gpuvis_trace_duration_vprintf( float duration, const char *fmt, va_list ap ) GPUV… 89 GPUVIS_EXTERN int gpuvis_trace_begin_ctx_printf( unsigned int ctx, const char *fmt, ... ) GPUVIS_AT… 90 GPUVIS_EXTERN int gpuvis_trace_begin_ctx_vprintf( unsigned int ctx, const char *fmt, va_list ap ) G… 93 GPUVIS_EXTERN int gpuvis_trace_end_ctx_printf( unsigned int ctx, const char *fmt, ... ) GPUVIS_ATTR… 94 GPUVIS_EXTERN int gpuvis_trace_end_ctx_vprintf( unsigned int ctx, const char *fmt, va_list ap ) GPU… 120 static inline void gpuvis_trace_blockf_vbegin( struct GpuvisTraceBlockf *block, const char *fmt, va… 121 static inline void gpuvis_trace_blockf_begin( struct GpuvisTraceBlockf *block, const char *fmt, ...… [all …]
|
/hardware/google/graphics/common/libscaler/ |
D | libscaler-common.h | 44 #define SC_LOGERR(fmt, args...) ((void)ALOG(LOG_ERROR, LOG_TAG, "%s: " fmt " [%s]", __func__, ##arg… argument 45 #define SC_LOGE(fmt, args...) ((void)ALOG(LOG_ERROR, LOG_TAG, "%s: " fmt, __func__, ##args)) argument 46 #define SC_LOGI(fmt, args...) ((void)ALOG(LOG_INFO, LOG_TAG, "%s: " fmt, __func__, ##args)) argument 47 #define SC_LOGI_IF(cond, fmt, args...) do { \ argument 49 SC_LOGI(fmt, ##args); \ 51 #define SC_LOGE_IF(cond, fmt, args...) do { \ argument 53 SC_LOGE(fmt, ##args); \ 55 #define SC_LOG_ASSERT(cont, fmt, args...) ((void)ALOG_ASSERT(cond, "%s: " fmt, __func__, ##args)) argument 59 #define SC_LOGD_IF(cond, fmt, args...) do { \ argument 61 SC_LOGD(fmt, ##args); \ [all …]
|
D | libscaler-m2m1shot.cpp | 127 bool CScalerM2M1SHOT::SetFormat(m2m1shot_pix_format &fmt, m2m1shot_buffer &buf, in SetFormat() argument 131 fmt.width = width; in SetFormat() 132 fmt.height = height; in SetFormat() 133 fmt.fmt = v4l2_fmt; in SetFormat() 171 bool CScalerM2M1SHOT::SetCrop(m2m1shot_pix_format &fmt, in SetCrop() argument 173 if (fmt.width <= l) { in SetCrop() 174 SC_LOGE("crop left %d is larger than image width %d", l, fmt.width); in SetCrop() 177 if (fmt.height <= t) { in SetCrop() 178 SC_LOGE("crop top %d is larger than image height %d", t, fmt.height); in SetCrop() 181 if (fmt.width < (l + w)) { in SetCrop() [all …]
|
/hardware/google/pixel/vibrator/cs40l26/ |
D | Trace.cpp | 177 std::stringstream fmt; in save() local 180 fmt << " "; in save() 184 fmt << mClassName << "::"; in save() 186 fmt << mFuncName << "("; in save() 189 fmt << param; in save() 191 fmt << ", "; in save() 195 fmt << ")"; in save() 197 std::string fmtOut = fmt.str(); in save() 205 std::stringstream fmt; in EffectTrace() local 206 fmt << "Effect("; in EffectTrace() [all …]
|
/hardware/google/gfxstream/guest/mesa/src/util/tests/ |
D | u_printf_test.cpp | 45 std::vector<char> fmt; member 66 format fmt; in add_format() local 67 fmt.fmt = std::vector<char>(string, string + strlen(string) + 1); in add_format() 68 fmt.args = arg_sizes; in add_format() 69 formats.push_back(fmt); in add_format() 81 format &fmt = formats[last_format]; in add_arg() local 82 uint64_t pos = fmt.fmt.size(); in add_arg() 84 fmt.fmt.insert(fmt.fmt.end(), str, str + strlen(str) + 1); in add_arg() 114 info.string_size = format.fmt.size(); in parse() 115 info.strings = const_cast<char*>(format.fmt.data()); in parse()
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/common/inc/ |
D | vidc_debug.h | 46 #define DEBUG_PRINT_ERROR(fmt, args...) \ argument 48 ALOGE(fmt,##args) 50 #define DEBUG_PRINT_INFO(fmt, args...) \ argument 52 ALOGI(fmt,##args) 54 #define DEBUG_PRINT_LOW(fmt, args...) \ argument 56 ALOGD(fmt,##args) 58 #define DEBUG_PRINT_HIGH(fmt, args...) \ argument 60 ALOGD(fmt,##args)
|
/hardware/qcom/sm8150/media/hypv-intercept/ |
D | hypv_intercept.h | 56 #define HYP_VIDEO_MSG_INFO(fmt, args...) ({if(debug_level & HYP_PRIO_INFO) \ argument 57 … __android_log_print(ANDROID_LOG_DEBUG, LOG_HYP_TAG, "[%d:%d]:[%s:%s]" fmt "", \ 59 #define HYP_VIDEO_MSG_LOW(fmt, args...) ({if(debug_level & HYP_PRIO_LOW) \ argument 60 … __android_log_print(ANDROID_LOG_VERBOSE, LOG_HYP_TAG, "[%d:%d]:[%s:%s]" fmt "", \ 62 #define HYP_VIDEO_MSG_HIGH(fmt, args...) ({if(debug_level & HYP_PRIO_HIGH) \ argument 63 … __android_log_print(ANDROID_LOG_INFO, LOG_HYP_TAG, "[%d:%d]:[%s:%s]" fmt "", \ 65 #define HYP_VIDEO_MSG_ERROR(fmt, args...) ({if(debug_level & HYP_PRIO_ERROR) \ argument 66 … __android_log_print(ANDROID_LOG_ERROR, LOG_HYP_TAG, "[%d:%d]:[%s:%s]" fmt "", \
|
/hardware/google/gfxstream/guest/android-emu/android/utils/ |
D | debug.h | 105 const char* fmt, 109 #define EMULOG(priority, fmt, ...) \ argument 110 __emu_log_print(priority, __FILE__, __LINE__, fmt, ##__VA_ARGS__); 134 #define dprint(fmt, ...) \ argument 136 EMULOG(EMULATOR_LOG_VERBOSE, fmt, ##__VA_ARGS__) \ 139 #define dinfo(fmt, ...) \ argument 141 EMULOG(EMULATOR_LOG_INFO, fmt, ##__VA_ARGS__) \ 143 #define dwarning(fmt, ...) \ argument 145 EMULOG(EMULATOR_LOG_WARNING, fmt, ##__VA_ARGS__) \ 147 #define derror(fmt, ...) \ argument [all …]
|
/hardware/google/graphics/common/libhwjpeg/ |
D | hwjpeg-v4l2.cpp | 40 m_v4l2Format.fmt.pix_mp.pixelformat = V4L2_PIX_FMT_RGB24; in CHWJpegV4L2Compressor() 41 m_v4l2Format.fmt.pix_mp.width = TO_IMAGE_SIZE(16, 0); in CHWJpegV4L2Compressor() 42 m_v4l2Format.fmt.pix_mp.height = TO_IMAGE_SIZE(16, 0); in CHWJpegV4L2Compressor() 211 if ((m_v4l2Format.fmt.pix_mp.pixelformat == v4l2_fmt) && in SetImageFormat() 212 (m_v4l2Format.fmt.pix_mp.width == TO_IMAGE_SIZE(width, width2)) && in SetImageFormat() 213 (m_v4l2Format.fmt.pix_mp.height == TO_IMAGE_SIZE(height, height2))) in SetImageFormat() 216 m_v4l2Format.fmt.pix_mp.pixelformat = v4l2_fmt; in SetImageFormat() 217 m_v4l2Format.fmt.pix_mp.width = TO_IMAGE_SIZE(width, width2); in SetImageFormat() 218 m_v4l2Format.fmt.pix_mp.height = TO_IMAGE_SIZE(height, height2); in SetImageFormat() 227 for (unsigned int i = 0; i < m_v4l2Format.fmt.pix_mp.num_planes; i++) in GetImageBufferSizes() [all …]
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/ |
D | vidc_debug.h | 46 #define DEBUG_PRINT_ERROR(fmt, args...) ({ \ argument 48 ALOGE(fmt,##args); \ 51 #define DEBUG_PRINT_INFO(fmt, args...) ({ \ argument 53 ALOGI(fmt,##args); \ 56 #define DEBUG_PRINT_LOW(fmt, args...) ({ \ argument 58 ALOGD(fmt,##args); \ 61 #define DEBUG_PRINT_HIGH(fmt, args...) ({ \ argument 63 ALOGD(fmt,##args); \
|
/hardware/qcom/sm7250/display/composer/ |
D | hwc_debugger.cpp | 182 void HWCDebugHandler::Error(const char *fmt, ...) { in Error() argument 184 va_start(list, fmt); in Error() 185 __android_log_vprint(ANDROID_LOG_ERROR, LOG_TAG, fmt, list); in Error() 188 void HWCDebugHandler::Warning(const char *fmt, ...) { in Warning() argument 190 va_start(list, fmt); in Warning() 191 __android_log_vprint(ANDROID_LOG_WARN, LOG_TAG, fmt, list); in Warning() 194 void HWCDebugHandler::Info(const char *fmt, ...) { in Info() argument 196 va_start(list, fmt); in Info() 197 __android_log_vprint(ANDROID_LOG_INFO, LOG_TAG, fmt, list); in Info() 200 void HWCDebugHandler::Debug(const char *fmt, ...) { in Debug() argument [all …]
|
/hardware/google/gfxstream/third-party/glm/include/glm/gtx/ |
D | io.inl | 136 format_punct<CTy> & fmt(const_cast<format_punct<CTy>&>(get_facet<format_punct<CTy> >(os))); 138 fmt.delim_left = a.value[0]; 139 fmt.delim_right = a.value[1]; 140 fmt.separator = a.value[2]; 163 io::format_punct<CTy> const & fmt(io::get_facet<io::format_punct<CTy> >(os)); local 167 if(fmt.formatted) 171 …os << std::fixed << std::right << std::setprecision(fmt.precision) << std::setfill(fmt.space) << f… 175 os << std::setw(fmt.width) << a[i]; 177 os << fmt.separator; 180 os << fmt.delim_right; [all …]
|
/hardware/qcom/media/msm8996/videopp/src/ |
D | omx_vdpp.cpp | 1448 struct v4l2_format fmt; in component_init() local 1628 fmt.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE; in component_init() 1629 fmt.fmt.pix_mp.height = drv_ctx.video_resolution_input.frame_height; in component_init() 1630 fmt.fmt.pix_mp.width = drv_ctx.video_resolution_input.frame_width; in component_init() 1633 fmt.fmt.pix_mp.field = V4L2_FIELD_NONE; in component_init() 1637 fmt.fmt.pix_mp.field = V4L2_FIELD_INTERLACED; in component_init() 1639 fmt.fmt.pix_mp.pixelformat = output_capability; in component_init() 1643 … setFormatParams(output_capability, drv_ctx.input_bytesperpixel, &(fmt.fmt.pix_mp.num_planes)); in component_init() 1644 for( i=0; i<fmt.fmt.pix_mp.num_planes; i++ ) in component_init() 1646 …fmt.fmt.pix_mp.plane_fmt[i].sizeimage = paddedFrameWidth128(fmt.fmt.pix_mp.width * drv_ctx.input_b… in component_init() [all …]
|