Home
last modified time | relevance | path

Searched refs:cast_environment (Results 1 – 25 of 92) sorted by relevance

1234

/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cast/test/
H A Dsender.cc89 const scoped_refptr<media::cast::CastEnvironment>& cast_environment, in WriteLogsToFileAndDestroySubscribers() argument
96 cast_environment->logger()->Unsubscribe(video_event_subscriber.get()); in WriteLogsToFileAndDestroySubscribers()
97 cast_environment->logger()->Unsubscribe(audio_event_subscriber.get()); in WriteLogsToFileAndDestroySubscribers()
101 const scoped_refptr<media::cast::CastEnvironment>& cast_environment, in WriteStatsAndDestroySubscribers() argument
105 cast_environment->logger()->Unsubscribe(video_stats_subscriber.get()); in WriteStatsAndDestroySubscribers()
106 cast_environment->logger()->Unsubscribe(audio_stats_subscriber.get()); in WriteStatsAndDestroySubscribers()
107 cast_environment->logger()->Unsubscribe(estimator.get()); in WriteStatsAndDestroySubscribers()
193 scoped_refptr<media::cast::CastEnvironment> cast_environment( in main() local
220 cast_environment->Clock(), base::TimeDelta::FromSeconds(1), in main()
238 cast_environment->logger()->Subscribe(video_event_subscriber.get()); in main()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/cast/receiver/
H A Dcast_receiver_impl.cc25 scoped_refptr<CastEnvironment> cast_environment, in Create() argument
30 cast_environment, audio_config, video_config, transport)); in Create()
34 scoped_refptr<CastEnvironment> cast_environment, in CastReceiverImpl() argument
38 : cast_environment_(cast_environment), in CastReceiverImpl()
39 audio_receiver_(cast_environment, audio_config, AUDIO_EVENT, transport), in CastReceiverImpl()
154 const scoped_refptr<CastEnvironment>& cast_environment, in EmitDecodedAudioFrame() argument
161 DCHECK(cast_environment->CurrentlyOn(CastEnvironment::MAIN)); in EmitDecodedAudioFrame()
167 playout_event->timestamp = cast_environment->Clock()->NowTicks(); in EmitDecodedAudioFrame()
181 const scoped_refptr<CastEnvironment>& cast_environment, in EmitDecodedVideoFrame() argument
188 DCHECK(cast_environment->CurrentlyOn(CastEnvironment::MAIN)); in EmitDecodedVideoFrame()
[all …]
H A Daudio_decoder.cc30 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, in ImplBase() argument
34 : cast_environment_(cast_environment), in ImplBase()
110 OpusImpl(const scoped_refptr<CastEnvironment>& cast_environment, in OpusImpl() argument
113 : ImplBase(cast_environment, in OpusImpl()
179 Pcm16Impl(const scoped_refptr<CastEnvironment>& cast_environment, in Pcm16Impl() argument
182 : ImplBase(cast_environment, in Pcm16Impl()
217 const scoped_refptr<CastEnvironment>& cast_environment, in AudioDecoder() argument
221 : cast_environment_(cast_environment) { in AudioDecoder()
224 impl_ = new OpusImpl(cast_environment, channels, sampling_rate); in AudioDecoder()
227 impl_ = new Pcm16Impl(cast_environment, channels, sampling_rate); in AudioDecoder()
H A Dvideo_decoder.cc34 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, Codec codec) in ImplBase() argument
35 : cast_environment_(cast_environment), in ImplBase()
109 explicit Vp8Impl(const scoped_refptr<CastEnvironment>& cast_environment) in Vp8Impl() argument
110 : ImplBase(cast_environment, CODEC_VIDEO_VP8) { in Vp8Impl()
185 explicit FakeImpl(const scoped_refptr<CastEnvironment>& cast_environment) in FakeImpl() argument
186 : ImplBase(cast_environment, CODEC_VIDEO_FAKE), in FakeImpl()
225 const scoped_refptr<CastEnvironment>& cast_environment, in VideoDecoder() argument
227 : cast_environment_(cast_environment) { in VideoDecoder()
231 impl_ = new FakeImpl(cast_environment); in VideoDecoder()
235 impl_ = new Vp8Impl(cast_environment); in VideoDecoder()
H A Dcast_receiver_impl.h31 CastReceiverImpl(scoped_refptr<CastEnvironment> cast_environment,
62 const scoped_refptr<CastEnvironment>& cast_environment,
76 const scoped_refptr<CastEnvironment>& cast_environment,
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cast/receiver/
H A Dcast_receiver_impl.cc25 scoped_refptr<CastEnvironment> cast_environment, in Create() argument
30 cast_environment, audio_config, video_config, transport)); in Create()
34 scoped_refptr<CastEnvironment> cast_environment, in CastReceiverImpl() argument
38 : cast_environment_(cast_environment), in CastReceiverImpl()
39 audio_receiver_(cast_environment, audio_config, AUDIO_EVENT, transport), in CastReceiverImpl()
155 const scoped_refptr<CastEnvironment>& cast_environment, in EmitDecodedAudioFrame() argument
162 DCHECK(cast_environment->CurrentlyOn(CastEnvironment::MAIN)); in EmitDecodedAudioFrame()
168 playout_event->timestamp = cast_environment->Clock()->NowTicks(); in EmitDecodedAudioFrame()
182 const scoped_refptr<CastEnvironment>& cast_environment, in EmitDecodedVideoFrame() argument
189 DCHECK(cast_environment->CurrentlyOn(CastEnvironment::MAIN)); in EmitDecodedVideoFrame()
[all …]
H A Daudio_decoder.cc30 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, in ImplBase() argument
34 : cast_environment_(cast_environment), in ImplBase()
110 OpusImpl(const scoped_refptr<CastEnvironment>& cast_environment, in OpusImpl() argument
113 : ImplBase(cast_environment, in OpusImpl()
179 Pcm16Impl(const scoped_refptr<CastEnvironment>& cast_environment, in Pcm16Impl() argument
182 : ImplBase(cast_environment, in Pcm16Impl()
217 const scoped_refptr<CastEnvironment>& cast_environment, in AudioDecoder() argument
221 : cast_environment_(cast_environment) { in AudioDecoder()
224 impl_ = new OpusImpl(cast_environment, channels, sampling_rate); in AudioDecoder()
227 impl_ = new Pcm16Impl(cast_environment, channels, sampling_rate); in AudioDecoder()
H A Dvideo_decoder.cc34 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, Codec codec) in ImplBase() argument
35 : cast_environment_(cast_environment), in ImplBase()
109 explicit Vp8Impl(const scoped_refptr<CastEnvironment>& cast_environment) in Vp8Impl() argument
110 : ImplBase(cast_environment, CODEC_VIDEO_VP8) { in Vp8Impl()
185 explicit FakeImpl(const scoped_refptr<CastEnvironment>& cast_environment) in FakeImpl() argument
186 : ImplBase(cast_environment, CODEC_VIDEO_FAKE), in FakeImpl()
225 const scoped_refptr<CastEnvironment>& cast_environment, in VideoDecoder() argument
227 : cast_environment_(cast_environment) { in VideoDecoder()
231 impl_ = new FakeImpl(cast_environment); in VideoDecoder()
235 impl_ = new Vp8Impl(cast_environment); in VideoDecoder()
H A Dcast_receiver_impl.h31 CastReceiverImpl(scoped_refptr<CastEnvironment> cast_environment,
62 const scoped_refptr<CastEnvironment>& cast_environment,
76 const scoped_refptr<CastEnvironment>& cast_environment,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/cast/
H A Dcast_sender_impl.cc23 LocalVideoFrameInput(scoped_refptr<CastEnvironment> cast_environment, in LocalVideoFrameInput() argument
25 : cast_environment_(cast_environment), in LocalVideoFrameInput()
67 LocalAudioFrameInput(scoped_refptr<CastEnvironment> cast_environment, in LocalAudioFrameInput() argument
69 : cast_environment_(cast_environment), audio_sender_(audio_sender) {} in LocalAudioFrameInput()
92 scoped_refptr<CastEnvironment> cast_environment, in Create() argument
94 CHECK(cast_environment.get()); in Create()
96 new CastSenderImpl(cast_environment, transport_sender)); in Create()
99 CastSenderImpl::CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment, in CastSenderImpl() argument
101 : cast_environment_(cast_environment), transport_sender_(transport_sender) { in CastSenderImpl()
102 CHECK(cast_environment.get()); in CastSenderImpl()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cast/
H A Dcast_sender_impl.cc24 LocalVideoFrameInput(scoped_refptr<CastEnvironment> cast_environment, in LocalVideoFrameInput() argument
26 : cast_environment_(cast_environment), in LocalVideoFrameInput()
68 LocalAudioFrameInput(scoped_refptr<CastEnvironment> cast_environment, in LocalAudioFrameInput() argument
70 : cast_environment_(cast_environment), audio_sender_(audio_sender) {} in LocalAudioFrameInput()
93 scoped_refptr<CastEnvironment> cast_environment, in Create() argument
95 CHECK(cast_environment.get()); in Create()
97 new CastSenderImpl(cast_environment, transport_sender)); in Create()
100 CastSenderImpl::CastSenderImpl(scoped_refptr<CastEnvironment> cast_environment, in CastSenderImpl() argument
102 : cast_environment_(cast_environment), transport_sender_(transport_sender) { in CastSenderImpl()
103 CHECK(cast_environment.get()); in CastSenderImpl()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cast/sender/
H A Dvideo_encoder.cc20 const scoped_refptr<CastEnvironment>& cast_environment, in Create() argument
30 cast_environment, video_config, status_change_cb)); in Create()
38 cast_environment, video_config, std::move(status_change_cb), in Create()
45 new VideoEncoderImpl(cast_environment, video_config, status_change_cb)); in Create()
H A Dvideo_sender.cc51 void LogVideoCaptureTimestamps(CastEnvironment* cast_environment, in LogVideoCaptureTimestamps() argument
75 cast_environment->Clock()->NowTicks(); in LogVideoCaptureTimestamps()
78 cast_environment->logger()->DispatchFrameEvent( in LogVideoCaptureTimestamps()
80 cast_environment->logger()->DispatchFrameEvent(std::move(capture_end_event)); in LogVideoCaptureTimestamps()
90 scoped_refptr<CastEnvironment> cast_environment, in VideoSender() argument
99 cast_environment, in VideoSender()
105 : NewAdaptiveCongestionControl(cast_environment->Clock(), in VideoSender()
H A Daudio_encoder.cc55 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, in ImplBase() argument
61 : cast_environment_(cast_environment), in ImplBase()
237 OpusImpl(const scoped_refptr<CastEnvironment>& cast_environment, in OpusImpl() argument
242 : ImplBase(cast_environment, in OpusImpl()
344 AppleAacImpl(const scoped_refptr<CastEnvironment>& cast_environment, in AppleAacImpl() argument
349 : ImplBase(cast_environment, in AppleAacImpl()
710 Pcm16Impl(const scoped_refptr<CastEnvironment>& cast_environment, in Pcm16Impl() argument
714 : ImplBase(cast_environment, in Pcm16Impl()
756 const scoped_refptr<CastEnvironment>& cast_environment, in AudioEncoder() argument
762 : cast_environment_(cast_environment) { in AudioEncoder()
[all …]
H A Daudio_sender.cc19 AudioSender::AudioSender(scoped_refptr<CastEnvironment> cast_environment, in AudioSender() argument
23 : FrameSender(cast_environment, in AudioSender()
30 cast_environment, audio_config.channels, audio_config.rtp_timebase, in AudioSender()
H A Dvideo_encoder_impl.cc62 scoped_refptr<CastEnvironment> cast_environment, in VideoEncoderImpl() argument
65 : cast_environment_(cast_environment) { in VideoEncoderImpl()
73 base::BindOnce(&InitializeEncoderOnEncoderThread, cast_environment, in VideoEncoderImpl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/cast/sender/
H A Dvideo_encoder.cc20 const scoped_refptr<CastEnvironment>& cast_environment, in Create() argument
30 cast_environment, video_config, status_change_cb)); in Create()
38 cast_environment, video_config, std::move(status_change_cb), in Create()
45 new VideoEncoderImpl(cast_environment, video_config, status_change_cb)); in Create()
H A Dvideo_sender.cc51 void LogVideoCaptureTimestamps(CastEnvironment* cast_environment, in LogVideoCaptureTimestamps() argument
75 cast_environment->Clock()->NowTicks(); in LogVideoCaptureTimestamps()
78 cast_environment->logger()->DispatchFrameEvent( in LogVideoCaptureTimestamps()
80 cast_environment->logger()->DispatchFrameEvent(std::move(capture_end_event)); in LogVideoCaptureTimestamps()
90 scoped_refptr<CastEnvironment> cast_environment, in VideoSender() argument
98 cast_environment, in VideoSender()
104 : NewAdaptiveCongestionControl(cast_environment->Clock(), in VideoSender()
H A Daudio_encoder.cc54 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, in ImplBase() argument
60 : cast_environment_(cast_environment), in ImplBase()
238 OpusImpl(const scoped_refptr<CastEnvironment>& cast_environment, in OpusImpl() argument
243 : ImplBase(cast_environment, in OpusImpl()
345 AppleAacImpl(const scoped_refptr<CastEnvironment>& cast_environment, in AppleAacImpl() argument
350 : ImplBase(cast_environment, in AppleAacImpl()
711 Pcm16Impl(const scoped_refptr<CastEnvironment>& cast_environment, in Pcm16Impl() argument
715 : ImplBase(cast_environment, in Pcm16Impl()
757 const scoped_refptr<CastEnvironment>& cast_environment, in AudioEncoder() argument
763 : cast_environment_(cast_environment) { in AudioEncoder()
[all …]
H A Daudio_sender.cc18 AudioSender::AudioSender(scoped_refptr<CastEnvironment> cast_environment, in AudioSender() argument
22 : FrameSender(cast_environment, in AudioSender()
29 cast_environment, audio_config.channels, audio_config.rtp_timebase, in AudioSender()
H A Dvideo_encoder_impl.cc62 scoped_refptr<CastEnvironment> cast_environment, in VideoEncoderImpl() argument
65 : cast_environment_(cast_environment) { in VideoEncoderImpl()
73 base::BindOnce(&InitializeEncoderOnEncoderThread, cast_environment, in VideoEncoderImpl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/cast/logging/
H A Draw_event_subscriber_bundle.cc14 const scoped_refptr<CastEnvironment>& cast_environment, in RawEventSubscriberBundleForStream() argument
17 : cast_environment_(cast_environment), in RawEventSubscriberBundleForStream()
23 cast_environment->Clock(), offset_estimator) { in RawEventSubscriberBundleForStream()
44 const scoped_refptr<CastEnvironment>& cast_environment) in RawEventSubscriberBundle() argument
45 : cast_environment_(cast_environment) {} in RawEventSubscriberBundle()
H A Draw_event_subscriber_bundle.h33 const scoped_refptr<CastEnvironment>& cast_environment,
58 const scoped_refptr<CastEnvironment>& cast_environment);
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/cast/logging/
H A Draw_event_subscriber_bundle.cc14 const scoped_refptr<CastEnvironment>& cast_environment, in RawEventSubscriberBundleForStream() argument
17 : cast_environment_(cast_environment), in RawEventSubscriberBundleForStream()
23 cast_environment->Clock(), offset_estimator) { in RawEventSubscriberBundleForStream()
44 const scoped_refptr<CastEnvironment>& cast_environment) in RawEventSubscriberBundle() argument
45 : cast_environment_(cast_environment) {} in RawEventSubscriberBundle()
H A Draw_event_subscriber_bundle.h33 const scoped_refptr<CastEnvironment>& cast_environment,
58 const scoped_refptr<CastEnvironment>& cast_environment);

1234