Searched refs:match_type (Results 1 – 4 of 4) sorted by relevance
| /webrtc/webrtc/src/api/media_engine/ |
| H A D | mod.rs | 519 let (_, mut match_type) = codec_parameters_fuzzy_search(remote_codec, codecs); in match_remote_codec() 520 if match_type == CodecMatch::Exact && apt_match == CodecMatch::Partial { in match_remote_codec() 521 match_type = CodecMatch::Partial; in match_remote_codec() 523 return Ok(match_type); in match_remote_codec() 526 let (_, match_type) = codec_parameters_fuzzy_search(remote_codec, codecs); in match_remote_codec() 527 Ok(match_type) in match_remote_codec() 619 let match_type = in update_from_remote_description() localVariable 622 if match_type == CodecMatch::Exact { in update_from_remote_description() 624 } else if match_type == CodecMatch::Partial { in update_from_remote_description()
|
| /webrtc/webrtc/src/track/track_local/ |
| H A D | track_local_static_rtp.rs | 147 let (codec, match_type) = codec_parameters_fuzzy_search(¶meters, t.codec_parameters()); in bind() 148 if match_type != CodecMatch::None { in bind()
|
| /webrtc/webrtc/src/rtp_transceiver/ |
| H A D | mod.rs | 231 let (_, match_type) = codec_parameters_fuzzy_search(codec, &media_engine_codecs); in set_codec_preferences() 232 if match_type == CodecMatch::None { in set_codec_preferences()
|
| /webrtc/webrtc/src/rtp_transceiver/rtp_receiver/ |
| H A D | mod.rs | 339 let (c, match_type) = codec_parameters_fuzzy_search(codec, &media_engine_codecs); in get_codecs() 340 if match_type != CodecMatch::None { in get_codecs()
|