Home | History | Annotate | Download | only in its

Lines Matching refs:formats

476         format(s) of the captured image. The formats may be "yuv", "jpeg",
481 request images back in multiple formats (e.g.) raw+yuv, raw+jpeg,
497 surface formats when reprocessing is enabled are "yuv" and "jpeg".
537 specifying one or more formats where each output is the full size for
552 If multiple formats are specified, then this function returns multiple
553 capture objects, one for each requested format. If multiple formats and
556 the returned objects matches the order of the requested formats in the
587 out_surfaces: (Optional) specifications of the output image formats
628 formats = [c["format"] if "format" in c else "yuv"
630 formats = [s if s != "jpg" else "jpeg" for s in formats]
634 formats = ['yuv']
662 if len(formats) > len(set(formats)):
663 if n_yuv != len(formats) - len(set(formats)) + 1:
667 raw_formats += 1 if "dng" in formats else 0
668 raw_formats += 1 if "raw" in formats else 0
669 raw_formats += 1 if "raw10" in formats else 0
670 raw_formats += 1 if "raw12" in formats else 0
671 raw_formats += 1 if "rawStats" in formats else 0
673 raise its.error.Error('Different raw formats not supported')
690 ",".join(formats))
695 # the burst, however individual images of different formats can come
725 for j,fmt in enumerate(formats):