Home
last modified time | relevance | path

Searched refs:format (Results 1 – 25 of 554) sorted by relevance

12345678910>>...23

/hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
DOMX_TI_Debug.h290 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ argument
294 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
297 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ argument
302 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
306 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
312 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ argument
317 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
335 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) argument
341 #define OMX_DBG_BAIL_IF_ERROR(_eError, dbg, cmd, format, list...) \ argument
344 cmd(dbg, format, ##list); \
[all …]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
Dvbp_trace.h23 extern void vbp_trace_util(const char* cat, const char* fun, int line, const char* format, ...);
25 #define VBP_TRACE_UTIL(cat, format, ...) \ argument
26 vbp_trace_util(cat, __FUNCTION__, __LINE__, format, ##__VA_ARGS__)
29 #define ETRACE(format, ...) VBP_TRACE_UTIL("ERROR: ", format, ##__VA_ARGS__) argument
30 #define WTRACE(format, ...) VBP_TRACE_UTIL("WARNING: ", format, ##__VA_ARGS__) argument
31 #define ITRACE(format, ...) VBP_TRACE_UTIL("INFO: ", format, ##__VA_ARGS__) argument
32 #define VTRACE(format, ...) VBP_TRACE_UTIL("VERBOSE: ", format, ##__VA_ARGS__) argument
36 #define ETRACE(format, ...) argument
37 #define WTRACE(format, ...) argument
38 #define ITRACE(format, ...) argument
[all …]
/hardware/intel/common/libmix/videodecoder/
DVideoDecoderTrace.h33 extern void TraceVideoDecoder(const char* cat, const char* fun, int line, const char* format, ...);
34 #define VIDEO_DECODER_TRACE(cat, format, ...) \ argument
35 TraceVideoDecoder(cat, __FUNCTION__, __LINE__, format, ##__VA_ARGS__)
37 #define ETRACE(format, ...) VIDEO_DECODER_TRACE("ERROR: ", format, ##__VA_ARGS__) argument
38 #define WTRACE(format, ...) VIDEO_DECODER_TRACE("WARNING: ", format, ##__VA_ARGS__) argument
39 #define ITRACE(format, ...) VIDEO_DECODER_TRACE("INFO: ", format, ##__VA_ARGS__) argument
40 #define VTRACE(format, ...) VIDEO_DECODER_TRACE("VERBOSE: ", format, ##__VA_ARGS__) argument
60 #define ETRACE(format, ...) argument
61 #define WTRACE(format, ...) argument
62 #define ITRACE(format, ...) argument
[all …]
/hardware/intel/common/libmix/mix_video/src/
Dmixvideolog.h14 #define LOG_V(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_VERBOSE, format, ##__VA_ARGS__) argument
15 #define LOG_I(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_INFO, format, ##__VA_ARGS__) argument
16 #define LOG_W(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_WARNING, format, ##__VA_ARGS__) argument
17 #define LOG_E(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_ERROR, format, ##__VA_ARGS__) argument
19 #define LOG_V(format, ...) argument
20 #define LOG_I(format, ...) argument
21 #define LOG_W(format, ...) argument
22 #define LOG_E(format, ...) argument
/hardware/ti/omap3/dspbridge/inc/
Dgt.h193 GT_0trace(struct GT_Mask mask, SmBits class, String format) in GT_0trace() argument
199 GT_1trace(struct GT_Mask mask, SmBits class, String format, ...) in GT_1trace() argument
205 GT_2trace(struct GT_Mask mask, SmBits class, String format, ...) in GT_2trace() argument
211 GT_3trace(struct GT_Mask mask, SmBits class, String format, ...) in GT_3trace() argument
217 GT_4trace(struct GT_Mask mask, SmBits class, String format, ...) in GT_4trace() argument
223 GT_5trace(struct GT_Mask mask, SmBits class, String format, ...) in GT_5trace() argument
229 GT_6trace(struct GT_Mask mask, SmBits class, String format, ...) in GT_6trace() argument
243 extern Int _GT_trace(struct GT_Mask * mask, String format, ...);
278 #define GT_0trace( mask, class, format ) argument
279 #define GT_1trace( mask, class, format, arg1 ) argument
[all …]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/include/
Dviddec_debug.h13 …#define DEB_FNAME(format, args...) OS_PRINT("%s: %s[%d]:: " format, __FILE__, __FUNCTION__ , __LI… argument
14 #define CDEB(a, format, args...) if(a != 0) {DEB(format, ##args);} argument
16 #define DEB(format, args...) argument
18 #define CDEB(a, format, args...) argument
19 #define DEB_FNAME(format, args...) argument
24 #define DEB(format, args...) argument
26 #define CDEB(a, format, args...) argument
27 #define DEB_FNAME(format, args...) argument
/hardware/qcom/gps/msm8974/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/gps/msm8960/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/gps/msm8084/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/gps/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/display/msm8994/libgralloc/
Dalloc_controller.cpp140 bool isUncompressedRgbFormat(int format) in isUncompressedRgbFormat() argument
144 switch (format) in isUncompressedRgbFormat()
165 void AdrenoMemInfo::getAlignedWidthAndHeight(int width, int height, int format, in getAlignedWidthAndHeight() argument
170 if (isUncompressedRgbFormat(format) == true) { in getAlignedWidthAndHeight()
171 int tileEnabled = isMacroTileEnabled(format, usage); in getAlignedWidthAndHeight()
173 height, format, tileEnabled, aligned_w, aligned_h); in getAlignedWidthAndHeight()
177 if (isUBwcEnabled(format, usage)) { in getAlignedWidthAndHeight()
178 getUBwcWidthAndHeight(width, height, format, aligned_w, aligned_h); in getAlignedWidthAndHeight()
184 switch (format) in getAlignedWidthAndHeight()
253 width, height, format, 0,raster_mode, padding_threshold, in getAlignedWidthAndHeight()
[all …]
Dgr.h51 unsigned int getBufferSizeAndDimensions(int width, int height, int format,
53 unsigned int getBufferSizeAndDimensions(int width, int height, int format,
58 void getBufferAttributes(int width, int height, int format, int usage,
63 bool isMacroTileEnabled(int format, int usage);
65 int decideBufferHandlingMechanism(int format, const char *compositionUsed,
71 int alloc_buffer(private_handle_t **pHnd, int w, int h, int format, int usage);
76 bool isUBwcEnabled(int format, int usage);
79 bool isUncompressedRgbFormat(int format);
121 void getAlignedWidthAndHeight(int width, int height, int format,
130 void getGpuAlignedWidthHeight(int width, int height, int format,
[all …]
/hardware/ti/omap4xxx/security/tf_daemon/
Ddelegation_client.c148 static MD_INLINE void LogError(const char* format, ...) in LogError() argument
151 va_start(ap, format); in LogError()
154 vsyslog(LOG_ERR, format, ap); in LogError()
159 vfprintf(stderr, format, ap); in LogError()
165 static MD_INLINE void LogWarning(const char* format, ...) in LogWarning() argument
168 va_start(ap, format); in LogWarning()
171 vsyslog(LOG_WARNING, format, ap); in LogWarning()
176 vfprintf(stderr, format, ap); in LogWarning()
181 static MD_INLINE void LogInfo(const char* format, ...) in LogInfo() argument
184 va_start(ap, format); in LogInfo()
[all …]
/hardware/ti/omap4-aah/security/tf_daemon/
Ddelegation_client.c167 static MD_INLINE void LogError(const char* format, ...) in LogError() argument
170 va_start(ap, format); in LogError()
173 vsyslog(LOG_ERR, format, ap); in LogError()
178 __android_log_vprint(ANDROID_LOG_ERROR , "TF Daemon", format, ap); in LogError()
181 vfprintf(stderr, format, ap); in LogError()
188 static MD_INLINE void LogWarning(const char* format, ...) in LogWarning() argument
191 va_start(ap, format); in LogWarning()
194 vsyslog(LOG_WARNING, format, ap); in LogWarning()
199 __android_log_vprint(ANDROID_LOG_WARN , "TF Daemon", format, ap); in LogWarning()
202 vfprintf(stderr, format, ap); in LogWarning()
[all …]
/hardware/intel/common/omx-components/videocodec/
DOMXVideoDecoderBase.cpp83 paramPortDefinitionInput.format.video.cMIMEType = NULL; // to be overridden in InitInputPort()
84 paramPortDefinitionInput.format.video.pNativeRender = NULL; in InitInputPort()
85 paramPortDefinitionInput.format.video.nFrameWidth = 176; in InitInputPort()
86 paramPortDefinitionInput.format.video.nFrameHeight = 144; in InitInputPort()
87 paramPortDefinitionInput.format.video.nStride = 0; in InitInputPort()
88 paramPortDefinitionInput.format.video.nSliceHeight = 0; in InitInputPort()
89 paramPortDefinitionInput.format.video.nBitrate = 64000; in InitInputPort()
90 paramPortDefinitionInput.format.video.xFramerate = 15 << 16; in InitInputPort()
92 paramPortDefinitionInput.format.video.bFlagErrorConcealment = OMX_FALSE; in InitInputPort()
93 …paramPortDefinitionInput.format.video.eCompressionFormat = OMX_VIDEO_CodingUnused; // to be overri… in InitInputPort()
[all …]
DOMXVideoDecoderVP9Hybrid.cpp64 paramPortDefinitionInput->format.video.cMIMEType = (OMX_STRING)VP9_MIME_TYPE; in InitInputPortFormatSpecific()
65 paramPortDefinitionInput->format.video.eCompressionFormat = OMX_VIDEO_CodingVP9; in InitInputPortFormatSpecific()
89 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat; in ProcessorInit()
90 …mGraphicBufferParam.graphicBufferStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN) … in ProcessorInit()
91 mGraphicBufferParam.graphicBufferWidth = def_output->format.video.nFrameWidth; in ProcessorInit()
92 … mGraphicBufferParam.graphicBufferHeight = (def_output->format.video.nFrameHeight + 0x1f) & ~0x1f; in ProcessorInit()
93 mDecodedImageWidth = def_output->format.video.nFrameWidth; in ProcessorInit()
94 mDecodedImageHeight = def_output->format.video.nFrameHeight; in ProcessorInit()
165 mGraphicBufferParam.graphicBufferColorFormat = def_output->format.video.eColorFormat; in ProcessorReset()
166 …mGraphicBufferParam.graphicBufferStride = (def_output->format.video.nFrameWidth + VP9_YV12_ALIGN) … in ProcessorReset()
[all …]
/hardware/akm/AK8975_FS/akmdfs/
DAKFS_Common.h105 #define AKMDEBUG(level, format, ...) \ argument
107 ? (fprintf(stdout, (format), ##__VA_ARGS__)) \
110 #define AKMDEBUG(level, format, ...) argument
115 #define AKMDATA(flag, format, ...) \ argument
117 ? (fprintf(stdout, (format), ##__VA_ARGS__)) \
120 #define AKMDATA(flag, format, ...) argument
125 #define AKM_LOG(format, ...) ALOGD((format), ##__VA_ARGS__) argument
127 #define AKM_LOG(format, ...) argument
/hardware/qcom/display/msm8226/libgralloc/
Dalloc_controller.cpp129 void AdrenoMemInfo::getAlignedWidthAndHeight(int width, int height, int format, in getAlignedWidthAndHeight() argument
135 if (format <= HAL_PIXEL_FORMAT_BGRA_8888) { in getAlignedWidthAndHeight()
148 switch(format) in getAlignedWidthAndHeight()
182 switch (format) in getAlignedWidthAndHeight()
246 width, height, format, 0,raster_mode, padding_threshold, in getAlignedWidthAndHeight()
364 bool isMacroTileEnabled(int format, int usage) in isMacroTileEnabled() argument
373 switch(format) in isMacroTileEnabled()
397 unsigned int getSize(int format, int width, int height, const int alignedw, in getSize() argument
401 switch (format) { in getSize()
428 if ((format == HAL_PIXEL_FORMAT_YV12) && ((width&1) || (height&1))) { in getSize()
[all …]
/hardware/qcom/display/msm8084/libgralloc/
Dalloc_controller.cpp129 void AdrenoMemInfo::getAlignedWidthAndHeight(int width, int height, int format, in getAlignedWidthAndHeight() argument
135 if (format <= HAL_PIXEL_FORMAT_BGRA_8888) { in getAlignedWidthAndHeight()
148 switch(format) in getAlignedWidthAndHeight()
182 switch (format) in getAlignedWidthAndHeight()
251 width, height, format, 0,raster_mode, padding_threshold, in getAlignedWidthAndHeight()
364 bool isMacroTileEnabled(int format, int usage) in isMacroTileEnabled() argument
373 switch(format) in isMacroTileEnabled()
397 size_t getSize(int format, int width, int height, const int alignedw, in getSize() argument
401 switch (format) { in getSize()
431 if ((format == HAL_PIXEL_FORMAT_YV12) && ((width&1) || (height&1))) { in getSize()
[all …]
/hardware/qcom/media/libc2dcolorconvert/
DC2DColorConverter.cpp65 bool isYUVSurface(ColorConvertFormat format);
66 void *getDummySurfaceDef(ColorConvertFormat format, size_t width, size_t height, bool isSource);
69 uint32_t getC2DFormat(ColorConvertFormat format);
70 size_t calcStride(ColorConvertFormat format, size_t width);
71 size_t calcYSize(ColorConvertFormat format, size_t width, size_t height);
72 size_t calcSize(ColorConvertFormat format, size_t width, size_t height);
75 size_t calcLumaAlign(ColorConvertFormat format);
76 size_t calcSizeAlign(ColorConvertFormat format);
77 C2DBytesPerPixel calcBytesPerPixel(ColorConvertFormat format);
259 bool C2DColorConverter::isYUVSurface(ColorConvertFormat format) in isYUVSurface() argument
[all …]
/hardware/libhardware/include/hardware/
Daudio_alsaops.h37 static inline enum pcm_format pcm_format_from_audio_format(audio_format_t format) in pcm_format_from_audio_format() argument
39 switch (format) { in pcm_format_from_audio_format()
61 LOG_ALWAYS_FATAL("pcm_format_from_audio_format: invalid audio format %#x", format); in pcm_format_from_audio_format()
72 static inline audio_format_t audio_format_from_pcm_format(enum pcm_format format) in audio_format_from_pcm_format() argument
74 switch (format) { in audio_format_from_pcm_format()
95 LOG_ALWAYS_FATAL("audio_format_from_pcm_format: invalid pcm format %#x", format); in audio_format_from_pcm_format()
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
Dvc1.h33 #define LOG( log_lev, format, args ... ) \ argument
34 …if (vc1_log_level >= log_lev) { OS_INFO("%s[%d]:: " format "\n", __FUNCTION__ , __LINE__ , ## arg…
45 #define LOG_CRIT(format, args ... ) LOG( CRITICAL, format, ## args) argument
46 #define LOG_WARN(format, args ... ) LOG( WARNING, format, ## args) argument
47 #define LOG_INFO(format, args ... ) LOG( INFO, format, ## args) argument
48 #define LOG_DEBUG(format, args ... ) LOG( DEBUG, format, ## args) argument
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
DPlaneCapabilities.cpp40 uint32_t format = hwcLayer->getFormat(); in isFormatSupported() local
44 switch (format) { in isFormatSupported()
52 VTRACE("unsupported format %#x", format); in isFormatSupported()
56 switch (format) { in isFormatSupported()
71 VTRACE("unsupported format %#x", format); in isFormatSupported()
82 uint32_t format = hwcLayer->getFormat(); in isSizeSupported() local
91 switch (format) { in isSizeSupported()
104 VTRACE("unsupported format %#x", format); in isSizeSupported()
108 switch (format) { in isSizeSupported()
121 VTRACE("unsupported format %#x", format); in isSizeSupported()
[all …]
/hardware/intel/common/wrs_omxil_core/base/src/
Dportbase.cpp66 portdefinition.format.audio.cMIMEType = &definition_format_mimetype[0]; in __PortBase()
67 portdefinition.format.video.cMIMEType = &definition_format_mimetype[0]; in __PortBase()
68 portdefinition.format.image.cMIMEType = &definition_format_mimetype[0]; in __PortBase()
228 OMX_AUDIO_PORTDEFINITIONTYPE *format = &temp.format.audio; in SetPortDefinition() local
229 const OMX_AUDIO_PORTDEFINITIONTYPE *pformat = &p->format.audio; in SetPortDefinition()
235 strncpy(format->cMIMEType, pformat->cMIMEType, in SetPortDefinition()
237 format->cMIMEType[mimetype_len+1] = '\0'; in SetPortDefinition()
238 format->pNativeRender = pformat->pNativeRender; in SetPortDefinition()
239 format->bFlagErrorConcealment = pformat->bFlagErrorConcealment; in SetPortDefinition()
240 format->eEncoding = pformat->eEncoding; in SetPortDefinition()
[all …]
/hardware/libhardware/modules/usbcamera/
DStream.cpp88 const char* Stream::formatToString(int format) { in formatToString() argument
90 switch (format) { in formatToString()
144 if (s->format != mStream->format) { in isValidReuseStream()
146 "expect %s(%d)", __func__, mId, formatToString(s->format), in isValidReuseStream()
147 s->format, formatToString(mStream->format), mStream->format); in isValidReuseStream()
169 dprintf(fd, "Stream Format: %s (%d)", formatToString(mStream->format), mStream->format); in dump()

12345678910>>...23