Home | History | Annotate | Download | only in its

Lines Matching full:yuv

81     CAP_YUV = {"format":"yuv"}
83 CAP_RAW_YUV = [{"format":"raw"}, {"format":"yuv"}]
84 CAP_DNG_YUV = [{"format":"dng"}, {"format":"yuv"}]
87 CAP_YUV_JPEG = [{"format":"yuv"}, {"format":"jpeg"}]
88 CAP_RAW_YUV_JPEG = [{"format":"raw"}, {"format":"yuv"}, {"format":"jpeg"}]
89 CAP_DNG_YUV_JPEG = [{"format":"dng"}, {"format":"yuv"}, {"format":"jpeg"}]
470 640x480 YUV surface without sending any data back. The caller needs to
476 format(s) of the captured image. The formats may be "yuv", "jpeg",
478 frame ("yuv") corresponding to a full sensor frame.
481 request images back in multiple formats (e.g.) raw+yuv, raw+jpeg,
482 yuv+jpeg, raw+yuv+jpeg. If the size is omitted for a surface, the
496 Supported reprocess format are "yuv" and "private". Supported output
497 surface formats when reprocessing is enabled are "yuv" and "jpeg".
524 "format": "yuv"
599 "yuv","jpeg","raw","raw10","raw12","rawStats","dng"].
628 formats = [c["format"] if "format" in c else "yuv"
633 "yuv", self.props)[0]
634 formats = ['yuv']
635 cmd["outputSurfaces"] = [{"format": "yuv",
640 # Only allow yuv output to multiple targets
641 yuv_surfaces = [s for s in cmd["outputSurfaces"] if s["format"]=="yuv"]
643 # Compute the buffer size of YUV targets
650 "yuv", self.props)[0]
658 # different yuv stream of same buffer size
661 'ITS does not support yuv outputs of same buffer size')
733 if fmt == 'yuv':