Home
last modified time | relevance | path

Searched refs:resolutions (Results 1 – 25 of 100) sorted by relevance

1234

/external/autotest/client/common_lib/cros/webrtc_scripts/
Dloopback-peerconnection.js22 constructor(videoElement, resolutions, cpuOveruseDetection=null) { argument
29 this.resolutions = resolutions.slice().sort((x, y) => y.w - x.w);
30 this.activeStreamIndex = resolutions.length - 1;
49 const promises = this.resolutions.map((resolution) => {
77 const expectedResolution = this.resolutions[this.activeStreamIndex];
/external/openscreen/cast/streaming/
Doffer_messages_unittest.cc41 "resolutions": [
131 const auto& resolutions = vs_one.resolutions; in ExpectEqualsValidOffer() local
132 EXPECT_EQ(3u, resolutions.size()); in ExpectEqualsValidOffer()
133 const Resolution& r_one = resolutions[0]; in ExpectEqualsValidOffer()
137 const Resolution& r_two = resolutions[1]; in ExpectEqualsValidOffer()
141 const Resolution& r_three = resolutions[2]; in ExpectEqualsValidOffer()
163 const auto& resolutions_two = vs_two.resolutions; in ExpectEqualsValidOffer()
387 "resolutions": [], in TEST()
402 "resolutions": [], in TEST()
418 "resolutions": [], in TEST()
[all …]
Dsender_session.cc57 std::vector<Resolution> resolutions; in CreateStream() local
58 std::transform(config.resolutions.begin(), config.resolutions.end(), in CreateStream()
59 std::back_inserter(resolutions), ToResolution); in CreateStream()
84 std::move(resolutions), in CreateStream()
126 !config.resolutions.empty() && in IsValidVideoCaptureConfig()
127 std::all_of(config.resolutions.begin(), config.resolutions.end(), in IsValidVideoCaptureConfig()
Doffer_messages.cc209 std::vector<Resolution> resolutions; in ParseResolutions() local
213 return resolutions; in ParseResolutions()
221 resolutions.push_back(r.value()); in ParseResolutions()
224 return resolutions; in ParseResolutions()
241 auto resolutions = ParseResolutions(value, "resolutions"); in ParseVideoStream() local
242 if (!resolutions) { in ParseVideoStream()
243 return resolutions.error(); in ParseVideoStream()
267 resolutions.value(), in ParseVideoStream()
362 for (auto resolution : resolutions) { in ToJson()
Dcapture_configs.h74 std::vector<DisplayResolution> resolutions; member
/external/python/pybind11/tests/
Dtest_chrono.py212 resolutions = m.different_resolutions()
214 resolutions.timestamp_h = time
215 resolutions.timestamp_m = time
216 resolutions.timestamp_s = time
217 resolutions.timestamp_ms = time
218 resolutions.timestamp_us = time
/external/webrtc/modules/rtp_rtcp/source/
Drtp_dependency_descriptor_reader.cc163 structure->resolutions.reserve(spatial_layers); in ReadResolutions()
167 structure->resolutions.emplace_back(width_minus_1 + 1, height_minus_1 + 1); in ReadResolutions()
214 if (structure_->resolutions.empty()) { in ReadFrameDependencyDefinition()
220 structure_->resolutions.size()); in ReadFrameDependencyDefinition()
222 structure_->resolutions[descriptor_->frame_dependencies.spatial_id]; in ReadFrameDependencyDefinition()
Drtp_dependency_descriptor_writer.cc120 bits += 1 + 32 * structure_.resolutions.size(); in StructureSizeBits()
234 uint64_t has_resolutions = structure_.resolutions.empty() ? 0 : 1; in WriteTemplateDependencyStructure()
306 RTC_DCHECK_EQ(structure_.resolutions.size(), max_spatial_id + 1); in WriteResolutions()
307 for (const RenderResolution& resolution : structure_.resolutions) { in WriteResolutions()
/external/autotest/client/site_tests/video_WebRtcResolutionSwitching/
Dcontrol.perf7 PURPOSE = "Test WebRTC by frequently switching between different resolutions"
22 different resolutions. The test then switches randomly which of the streams are
23 active for each connection, effectively flipping between different resolutions.
Dcontrol7 PURPOSE = "Stress WebRTC by frequently switching between different resolutions"
22 different resolutions. The test then switches randomly which of the streams are
23 active for each connection, effectively flipping between different resolutions.
/external/pdfium/third_party/libopenjpeg20/
Dtcd.c70 opj_tcd_resolution_t *res = &tilec->resolutions[resno]; in tcd_dump()
252 opj_tcd_resolution_t *res = &tilec->resolutions[resno]; in opj_tcd_makelayer()
364 opj_tcd_resolution_t *res = &tilec->resolutions[resno]; in opj_tcd_makelayer_fixed()
470 opj_tcd_resolution_t *res = &tilec->resolutions[resno]; in opj_tcd_rateallocate()
856 if (l_tilec->resolutions == 00) { in opj_tcd_init_tile()
857 l_tilec->resolutions = (opj_tcd_resolution_t *) opj_malloc(l_data_size); in opj_tcd_init_tile()
858 if (! l_tilec->resolutions) { in opj_tcd_init_tile()
863 memset(l_tilec->resolutions, 0, l_data_size); in opj_tcd_init_tile()
866 l_tilec->resolutions, l_data_size); in opj_tcd_init_tile()
869 opj_free(l_tilec->resolutions); in opj_tcd_init_tile()
[all …]
Dpi.c247 res = &comp->resolutions[pi->resno]; in opj_pi_next_lrcp()
261 res = &comp->resolutions[pi->resno]; in opj_pi_next_lrcp()
300 res = &comp->resolutions[pi->resno]; in opj_pi_next_rlcp()
313 res = &comp->resolutions[pi->resno]; in opj_pi_next_rlcp()
355 res = &comp->resolutions[resno]; in opj_pi_next_rpcl()
393 res = &comp->resolutions[pi->resno]; in opj_pi_next_rpcl()
491 res = &comp->resolutions[resno]; in opj_pi_next_pcrl()
527 res = &comp->resolutions[pi->resno]; in opj_pi_next_pcrl()
627 res = &comp->resolutions[resno]; in opj_pi_next_cprl()
659 res = &comp->resolutions[pi->resno]; in opj_pi_next_cprl()
[all …]
/external/webrtc/api/transport/rtp/
Ddependency_descriptor.h87 lhs.resolutions == rhs.resolutions && lhs.templates == rhs.templates;
96 absl::InlinedVector<RenderResolution, 4> resolutions; member
/external/libcups/examples/
Dgrouping.drv21 // Supported resolutions
30 // Supported resolutions
Dcolor.drv21 // Supported resolutions
37 // Supported resolutions
/external/rust/cxx/syntax/
Dtypes.rs25 pub resolutions: UnorderedMap<&'a Ident, Resolution<'a>>, field
40 let mut resolutions = UnorderedMap::new(); in collect() localVariable
58 resolutions.insert(&name.rust, Resolution { name, generics }); in collect()
199 resolutions, in collect()
/external/doclava/src/com/google/doclava/
DAnnotationValueInfo.java106 ArrayList<Resolution> resolutions = mResolutions; in resolveResolutions() local
110 for (Resolution resolution : resolutions) { in resolveResolutions()
DAnnotationInstanceInfo.java103 ArrayList<Resolution> resolutions = mResolutions; in resolveResolutions() local
107 for (Resolution resolution : resolutions) { in resolveResolutions()
/external/webrtc/examples/objc/AppRTCMobile/
DARDSettingsModel.m28 NSMutableSet<NSArray<NSNumber *> *> *resolutions =
36 [resolutions addObject:resolutionObject];
41 [[resolutions allObjects] sortedArrayUsingComparator:^NSComparisonResult(
/external/webrtc/modules/video_coding/codecs/test/
Dvideocodec_test_mediacodec.cc122 const std::vector<std::tuple<int, int>> resolutions = { in TEST() local
130 for (const auto& resolution : resolutions) { in TEST()
Dplot_webrtc_test_logs.py393 resolutions = ParseSetting(filename, WIDTH[1])
403 sub_keys = resolutions
411 sub_keys = resolutions
/external/webrtc/modules/video_coding/codecs/av1/
Dlibaom_av1_encoder.cc516 auto& resolutions = codec_specific_info.template_structure->resolutions; in Encode() local
518 resolutions.resize(svc_params_->number_spatial_layers); in Encode()
522 resolutions[sid] = in Encode()
526 resolutions = {RenderResolution(cfg_.g_w, cfg_.g_h)}; in Encode()
/external/llvm-project/llvm/test/ThinLTO/X86/
Dcache-typeid-resolutions.ll2 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-typeid-resolutions-import.ll -o %t-import.bc
8 ; Two resolutions for typeid1: Unsat, Single
16 ; Three resolutions for typeid2: Indir, SingleImpl, UniqueRetVal
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArraySubImage3D.cpp47 const glw::GLuint resolutions[TextureCubeMapArraySubImage3D::m_n_resolutions] variable
149 glw::GLuint width = resolutions[resolution_index][DL_WIDTH]; in iterate()
150 glw::GLuint height = resolutions[resolution_index][DL_HEIGHT]; in iterate()
151 glw::GLuint depth = resolutions[resolution_index][DL_DEPTH]; in iterate()
/external/angle/extensions/
DANGLE_get_tex_level_parameter.txt110 TEXTURE_STENCIL_SIZE, and TEXTURE_SHARED_SIZE return the actual resolutions
111 of the stored image components, not the resolutions specified when the image
116 resolutions returned specify the component resolution of an uncompressed

1234