Lines Matching full:formats
354 format(s) of the captured image. The formats may be "yuv", "jpeg",
359 request images back in multiple formats (e.g.) raw+yuv, raw+jpeg,
403 specifying one or more formats where each output is the full size for
418 If multiple formats are specified, then this function returns multiple
419 capture objects, one for each requested format. If multiple formats and
422 the returned objects matches the order of the requested formats in the
434 out_surfaces: (Optional) specifications of the output image formats
457 formats = [c["format"] if c.has_key("format") else "yuv"
459 formats = [s if s != "jpg" else "jpeg" for s in formats]
461 formats = ['yuv']
464 if len(formats) > len(set(formats)):
466 if "dng" in formats and "raw" in formats or \
467 "dng" in formats and "raw10" in formats or \
468 "raw" in formats and "raw10" in formats:
469 raise its.error.Error('Different raw formats not supported')
472 ",".join(formats))
477 # the burst, however individual images of different formats can come
500 for j,fmt in enumerate(formats):