Home
last modified time | relevance | path

Searched refs:OnOutputFormatRequest (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/media/base/
Dvideo_adapter_unittest.cc122 void OnOutputFormatRequest(int width, in OnOutputFormatRequest() function in cricket::VideoAdapterTest
130 adapter_.OnOutputFormatRequest(target_aspect_ratio, max_pixel_count, in OnOutputFormatRequest()
134 adapter_.OnOutputFormatRequest( in OnOutputFormatRequest()
180 OnOutputFormatRequest(kWidth, kHeight, absl::nullopt); in TEST_P()
194 OnOutputFormatRequest(kWidth, kHeight, kDefaultFps / 2); in TEST_P()
243 OnOutputFormatRequest(kWidth, kHeight, kDefaultFps * 2 / 3); in TEST_P()
291 OnOutputFormatRequest(kWidth, kHeight, kDefaultFps * 2); in TEST_P()
304 adapter_.OnOutputFormatRequest(absl::nullopt, absl::nullopt, kDefaultFps / 2); in TEST_P()
326 OnOutputFormatRequest(640, 480, kDefaultFps); in TEST_P()
351 OnOutputFormatRequest(640, 480, kDefaultFps); in TEST_P()
[all …]
Dvideo_adapter.h60 void OnOutputFormatRequest(const absl::optional<VideoFormat>& format)
71 void OnOutputFormatRequest(
80 void OnOutputFormatRequest(
Dvideo_adapter.cc292 void VideoAdapter::OnOutputFormatRequest( in OnOutputFormatRequest() function in cricket::VideoAdapter
303 OnOutputFormatRequest(target_aspect_ratio, max_pixel_count, max_fps); in OnOutputFormatRequest()
306 void VideoAdapter::OnOutputFormatRequest( in OnOutputFormatRequest() function in cricket::VideoAdapter
322 OnOutputFormatRequest(target_landscape_aspect_ratio, max_pixel_count, in OnOutputFormatRequest()
326 void VideoAdapter::OnOutputFormatRequest( in OnOutputFormatRequest() function in cricket::VideoAdapter
/external/webrtc/sdk/objc/unittests/
DObjCVideoTrackSource_xctest.mm79 _video_source->OnOutputFormatRequest(640, 360, 30);
111 _video_source->OnOutputFormatRequest(912, 514, 30);
141 _video_source->OnOutputFormatRequest(640, 360, 30);
148 _video_source->OnOutputFormatRequest(480, 270, 30);
155 _video_source->OnOutputFormatRequest(320, 180, 30);
194 _video_source->OnOutputFormatRequest(640, 360, 30);
230 _video_source->OnOutputFormatRequest(640, 360, 30);
266 _video_source->OnOutputFormatRequest(640, 360, 30);
311 _video_source->OnOutputFormatRequest(480, 270, 30);
355 _video_source->OnOutputFormatRequest(640, 360, 30);
[all …]
/external/webrtc/sdk/objc/native/src/
Dobjc_video_track_source.h48 void OnOutputFormatRequest(int width, int height, int fps);
Dobjc_video_track_source.mm60 void ObjCVideoTrackSource::OnOutputFormatRequest(int width, int height, int fps) {
62 video_adapter()->OnOutputFormatRequest(format);
/external/webrtc/sdk/objc/api/peerconnection/
DRTCVideoSource.mm73 getObjCVideoSource(_nativeVideoSource)->OnOutputFormatRequest(width, height, fps);
/external/webrtc/sdk/android/src/jni/
Dandroid_video_track_source.cc164 video_adapter()->OnOutputFormatRequest( in AdaptOutputFormat()