HomeSort by relevance Sort by last modified time
    Searched refs:supported_formats (Results 1 - 24 of 24) sorted by null

  /external/webrtc/talk/media/base/
videocapturer_unittest.cc 496 std::vector<cricket::VideoFormat> supported_formats; local
497 supported_formats.push_back(cricket::VideoFormat(320, 240,
499 supported_formats.push_back(cricket::VideoFormat(320, 640,
501 capturer_.ResetSupportedFormats(supported_formats);
517 supported_formats.clear();
518 supported_formats.push_back(cricket::VideoFormat(320, 640,
520 supported_formats.push_back(cricket::VideoFormat(320, 240,
522 capturer_.ResetSupportedFormats(supported_formats);
534 std::vector<cricket::VideoFormat> supported_formats; local
535 supported_formats.push_back(cricket::VideoFormat(320, 240
575 std::vector<cricket::VideoFormat> supported_formats; local
598 std::vector<cricket::VideoFormat> supported_formats; local
670 std::vector<cricket::VideoFormat> supported_formats; local
795 std::vector<cricket::VideoFormat> supported_formats; local
    [all...]
videocapturer.cc 266 const std::vector<VideoFormat>* supported_formats = GetSupportedFormats(); local
268 if (supported_formats->empty()) {
273 std::vector<VideoFormat>::const_iterator best = supported_formats->end();
275 for (i = supported_formats->begin(); i != supported_formats->end(); ++i) {
285 if (supported_formats->end() == best) {
  /external/mesa3d/src/gallium/state_trackers/clover/core/
format.hpp 40 std::set<cl_image_format> supported_formats(const context &ctx,
device.hpp 90 supported_formats(const context &, cl_mem_object_type);
format.cpp 146 supported_formats(const context &ctx, cl_mem_object_type type) { function in namespace:clover
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_test.cc 98 V4L2Device* device, SupportedFormats* supported_formats) {
99 supported_formats->clear();
143 supported_formats->push_back(format);
321 SupportedFormats supported_formats; local
322 if (!GetSupportedFormats(device.get(), &supported_formats)) {
326 SupportedFormat max_resolution = GetMaximumResolution(supported_formats);
342 GetResolutionForCropping(supported_formats, cropping_profile);
361 supported_formats, test_resolution.width, test_resolution.height);
471 SupportedFormats supported_formats;
472 if (!GetSupportedFormats(device.get(), &supported_formats)) {
    [all...]
  /external/adhd/cras/src/tests/
bt_io_unittest.cc 87 d->supported_formats = NULL;
94 free(iodev->supported_formats);
103 iodev->supported_formats = (snd_pcm_format_t *)calloc(
104 2, sizeof(*iodev->supported_formats));
105 iodev->supported_formats[0] = SND_PCM_FORMAT_S16_LE;
106 iodev->supported_formats[1] = (snd_pcm_format_t)0;
198 free(iodev_.supported_formats);
iodev_unittest.cc 266 iodev_.supported_formats = pcm_formats_;
    [all...]
  /external/adhd/cras/src/server/
cras_hfp_iodev.c 43 free(iodev->supported_formats);
44 iodev->supported_formats =
46 iodev->supported_formats[0] = SND_PCM_FORMAT_S16_LE;
47 iodev->supported_formats[1] = 0;
209 free(hfpio->base.supported_formats);
cras_bt_io.c 173 for (length = 0; dev->supported_formats[length]; length++);
174 iodev->supported_formats = (snd_pcm_format_t *)malloc(
175 (length + 1) * sizeof(*iodev->supported_formats));
177 iodev->supported_formats[i] =
178 dev->supported_formats[i];
420 free(bt_iodev->supported_formats);
cras_a2dp_iodev.c 93 free(iodev->supported_formats);
94 iodev->supported_formats =
96 iodev->supported_formats[0] = SND_PCM_FORMAT_S16_LE;
97 iodev->supported_formats[1] = 0;
441 free(a2dpio->base.supported_formats);
cras_empty_iodev.c 200 iodev->supported_formats = empty_supported_formats;
test_iodev.c 193 iodev->supported_formats = test_supported_formats;
cras_iodev.h 155 * supported_formats - List of audio formats (s16le, s32le) supported by device.
236 snd_pcm_format_t *supported_formats; member in struct:cras_iodev
cras_loopback_iodev.c 268 iodev->supported_formats = loopback_supported_formats;
cras_iodev.c 338 for (i = 0; iodev->supported_formats[i] != 0; i++) {
339 if (fmt == iodev->supported_formats[i])
343 return iodev->supported_formats[0];
    [all...]
cras_alsa_io.c 846 free(aio->base.supported_formats);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.c 179 xa->supported_formats = calloc(num_formats, sizeof(*xa->supported_formats));
180 if (!xa->supported_formats)
183 xa->supported_formats[0] = xa_format_unknown;
203 xa->supported_formats[num_formats++] = xa_format;
226 free(xa->supported_formats);
270 fdesc = xa_get_pipe_format(xa, xa->supported_formats[i]);
xa_priv.h 75 enum xa_formats *supported_formats; member in struct:xa_tracker
  /external/harfbuzz_ng/util/
hb-shape.cc 61 g_strjoinv ("/", const_cast<char**> (options.supported_formats)));
options.hh 564 supported_formats = supported_formats_;
603 const char **supported_formats;
options.cc 615 if (nullptr == supported_formats)
619 char *items = g_strjoinv ("/", const_cast<char **> (supported_formats));
  /external/mesa3d/src/gallium/state_trackers/clover/api/
memory.cpp 163 if (!supported_formats(ctx, desc->image_type).count(*format))
245 auto formats = supported_formats(ctx, type);
  /external/webrtc/talk/app/webrtc/
videosource.cc 213 const std::vector<cricket::VideoFormat>& supported_formats) {
216 std::vector<cricket::VideoFormat> candidates = supported_formats;

Completed in 369 milliseconds