Home
last modified time | relevance | path

Searched refs:supported_formats (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/talk/media/base/
Dvideocapturer_unittest.cc496 std::vector<cricket::VideoFormat> supported_formats; in TEST_F() local
497 supported_formats.push_back(cricket::VideoFormat(320, 240, in TEST_F()
499 supported_formats.push_back(cricket::VideoFormat(320, 640, in TEST_F()
501 capturer_.ResetSupportedFormats(supported_formats); in TEST_F()
517 supported_formats.clear(); in TEST_F()
518 supported_formats.push_back(cricket::VideoFormat(320, 640, in TEST_F()
520 supported_formats.push_back(cricket::VideoFormat(320, 240, in TEST_F()
522 capturer_.ResetSupportedFormats(supported_formats); in TEST_F()
534 std::vector<cricket::VideoFormat> supported_formats; in TEST_F() local
535 supported_formats.push_back(cricket::VideoFormat(320, 240, in TEST_F()
[all …]
Dvideocapturer.cc266 const std::vector<VideoFormat>* supported_formats = GetSupportedFormats(); in GetBestCaptureFormat() local
268 if (supported_formats->empty()) { in GetBestCaptureFormat()
273 std::vector<VideoFormat>::const_iterator best = supported_formats->end(); in GetBestCaptureFormat()
275 for (i = supported_formats->begin(); i != supported_formats->end(); ++i) { in GetBestCaptureFormat()
285 if (supported_formats->end() == best) { in GetBestCaptureFormat()
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_tracker.c159 xa->supported_formats = calloc(num_formats, sizeof(*xa->supported_formats)); in xa_tracker_create()
160 if (!xa->supported_formats) in xa_tracker_create()
163 xa->supported_formats[0] = xa_format_unknown; in xa_tracker_create()
182 xa->supported_formats[num_formats++] = xa_format; in xa_tracker_create()
200 free(xa->supported_formats); in xa_tracker_destroy()
243 fdesc = xa_get_pipe_format(xa->supported_formats[i]); in xa_get_format_stype_depth()
Dxa_priv.h72 enum xa_formats *supported_formats; member
/external/autotest/client/site_tests/camera_V4L2/
Dcamera_V4L2.py139 self.supported_formats = list(set(format_info))
140 logging.info("Supported pixel format: %s\n", self.supported_formats)
200 option.append("--pixel-format=%s" % self.supported_formats[0])
211 match.group(3) != self.supported_formats[0] or
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dmemory.cpp116 if (!supported_formats(ctx, CL_MEM_OBJECT_IMAGE2D).count(*format)) in clCreateImage2D()
152 if (!supported_formats(ctx, CL_MEM_OBJECT_IMAGE3D).count(*format)) in clCreateImage3D()
179 auto formats = supported_formats(ctx, type); in clGetSupportedImageFormats()
/external/mesa3d/src/gallium/state_trackers/clover/core/
Dformat.hpp40 std::set<cl_image_format> supported_formats(cl_context ctx,
Ddevice.hpp70 clover::supported_formats(cl_context, cl_mem_object_type);
Dformat.cpp148 supported_formats(cl_context ctx, cl_mem_object_type type) { in supported_formats() function
/external/harfbuzz_ng/util/
Dhb-shape.cc59 g_strjoinv ("/", const_cast<char**> (options.supported_formats))); in init()
Doptions.hh380 supported_formats = supported_formats_; in output_options_t()
418 const char **supported_formats; member
Doptions.cc443 if (NULL == supported_formats) in add_options()
447 char *items = g_strjoinv ("/", const_cast<char **> (supported_formats)); in add_options()
/external/kernel-headers/original/uapi/video/
Dadf.h291 __u32 __user *supported_formats; member
/external/webrtc/talk/app/webrtc/
Dvideosource.cc213 const std::vector<cricket::VideoFormat>& supported_formats) { in FilterFormats() argument
216 std::vector<cricket::VideoFormat> candidates = supported_formats; in FilterFormats()