Searched refs:v4l2_fmt (Results 1 – 4 of 4) sorted by relevance
/hardware/google/graphics/common/libscaler/ |
D | libscaler-m2m1shot.h | 38 unsigned int width, unsigned int height, unsigned int v4l2_fmt); 52 inline bool SetSrcFormat(unsigned int width, unsigned int height, unsigned int v4l2_fmt) { in SetSrcFormat() argument 53 return SetFormat(m_task.fmt_out, m_task.buf_out, width, height, v4l2_fmt); in SetSrcFormat() 56 inline bool SetDstFormat(unsigned int width, unsigned int height, unsigned int v4l2_fmt) { in SetDstFormat() argument 57 return SetFormat(m_task.fmt_cap, m_task.buf_cap, width, height, v4l2_fmt); in SetDstFormat()
|
D | libscaler-m2m1shot.cpp | 128 unsigned int width, unsigned int height, unsigned int v4l2_fmt) { in SetFormat() argument 133 fmt.fmt = v4l2_fmt; in SetFormat() 136 if (g_pixfmt_table[i].pixfmt == v4l2_fmt) { in SetFormat() 143 SC_LOGE("Format %#x is not supported", v4l2_fmt); in SetFormat() 149 SC_LOGE("Plane %d of format %#x must have even width", i, v4l2_fmt); in SetFormat()
|
/hardware/google/graphics/common/libhwjpeg/include/ |
D | exynos-hwjpeg.h | 174 virtual bool SetImageFormat(unsigned int v4l2_fmt, unsigned int width, unsigned int height, 439 virtual bool SetImageFormat(unsigned int v4l2_fmt, unsigned int width, unsigned int height) = 0; 631 virtual bool SetImageFormat(unsigned int v4l2_fmt, unsigned int width, unsigned int height, 672 virtual bool SetImageFormat(unsigned int v4l2_fmt, unsigned int width, unsigned int height);
|
/hardware/google/graphics/common/libhwjpeg/ |
D | hwjpeg-v4l2.cpp | 208 bool CHWJpegV4L2Compressor::SetImageFormat(unsigned int v4l2_fmt, unsigned int width, in SetImageFormat() argument 211 if ((m_v4l2Format.fmt.pix_mp.pixelformat == v4l2_fmt) && in SetImageFormat() 216 m_v4l2Format.fmt.pix_mp.pixelformat = v4l2_fmt; in SetImageFormat() 827 bool CHWJpegV4L2Decompressor::SetImageFormat(unsigned int v4l2_fmt, unsigned int width, in SetImageFormat() argument 832 if ((p->pixelformat == v4l2_fmt) && (p->width == width) && (p->height == height)) in SetImageFormat() 841 m_v4l2Format.fmt.pix.pixelformat = v4l2_fmt; in SetImageFormat() 846 ALOGERR("Failed to S_FMT for decompressed image (%08X,%ux%u)", v4l2_fmt, width, height); in SetImageFormat()
|