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

  /external/chromium_org/media/test/data/eme_player_js/
fps_observer.js 8 this.video_ = null;
16 this.video_ = video;
18 this.video_.addEventListener('playing', function() {
22 this.video_.addEventListener('error', function() {
26 this.video_.addEventListener('ended', function() {
42 if (this.video_.readyState <= HTMLMediaElement.HAVE_CURRENT_DATA ||
43 this.video_.paused || this.video_.ended)
50 var fps = (this.video_.webkitDecodedFrameCount - this.decodedFrames_) /
52 this.decodedFrames_ = this.video_.webkitDecodedFrameCount
    [all...]
eme_app.js 8 this.video_ = null;
16 if (this.video_) {
18 this.video_.pause();
19 this.video_.remove();
20 delete(this.video_);
23 this.video_ = document.createElement('video');
24 this.video_.controls = true;
25 this.video_.preload = true;
26 this.video_.width = 848;
27 this.video_.height = 480
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcmediaengine.cc 52 video_.SetVoiceEngine(&voice_);
53 video_.SetExternalEncoderFactory(encoder_factory);
54 video_.SetExternalDecoderFactory(decoder_factory);
67 video_.SetExternalDecoderFactory(decoder_factory);
68 video_.SetExternalEncoderFactory(encoder_factory);
69 video_.SetVoiceEngine(&voice_);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
mediaengine.h 183 if (!video_.Init(worker_thread)) {
187 SignalVideoCaptureStateChange().repeat(video_.SignalCaptureStateChange);
191 video_.Terminate();
196 return (voice_.GetCapabilities() | video_.GetCapabilities());
202 return video_.CreateChannel(channel);
218 return video_.SetDefaultEncoderConfig(config);
221 return video_.GetDefaultEncoderConfig();
249 return video_.codecs();
252 return video_.rtp_header_extensions();
259 video_.SetLogging(min_sev, filter)
286 VIDEO video_; member in class:cricket::CompositeMediaEngine
    [all...]
fakemediaengine.h 957 video_ = FakeVideoEngine();
965 video_.SetCodecs(codecs);
974 video_.set_rtp_header_extensions(extensions);
981 return video_.GetChannel(index);
988 return video_.default_encoder_config_;
994 int video_loglevel() const { return video_.loglevel_; }
995 const std::string& video_logfilter() const { return video_.logfilter_; }
996 bool capture() const { return video_.capture_; }
998 return voice_.options_changed_ || video_.options_changed_;
1001 video_.options_changed_ = false
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediamessages.h 60 return audio_.empty() && video_.empty() && data_.empty();
64 std::vector<StreamParams>* mutable_video() { return &video_; }
67 const std::vector<StreamParams>& video() const { return video_; }
88 std::vector<StreamParams> video_; member in struct:cricket::MediaStreams
mediamessages.cc 100 return GetStream(video_, selector, stream);
110 video_ = streams.video_;
119 AddStream(&video_, stream);
133 return RemoveStream(&video_, selector);
  /external/chromium_org/media/filters/
frame_processor_unittest.cc 87 ASSERT_TRUE(video_);
88 EXPECT_TRUE(frame_processor_->AddTrack(video_id_, video_.get()));
89 video_->Seek(base::TimeDelta());
90 video_->StartReturningData();
237 scoped_ptr<ChunkDemuxerStream> video_; member in class:media::FrameProcessorTest
283 ASSERT_FALSE(video_);
284 video_.reset(new ChunkDemuxerStream(DemuxerStream::VIDEO, true));
285 ASSERT_TRUE(video_->UpdateVideoConfig(TestVideoConfig::Normal(),
361 CheckExpectedRangesByTimestamp(video_.get(), "{ [0,10) }");
362 CheckReadsThenReadStalls(video_.get(), "0")
    [all...]
chunk_demuxer.cc 231 ChunkDemuxerStream* video_; // Not owned by |this|. member in class:media::SourceState
266 video_(NULL),
359 if (video_)
360 video_->Remove(start, end, duration);
376 if (video_)
377 ranges_list.push_back(video_->GetBufferedRanges(duration));
393 if (video_)
394 max_duration = std::max(max_duration, video_->GetBufferedDuration());
408 if (video_)
409 video_->StartReturningData()
    [all...]
chunk_demuxer.h 370 scoped_ptr<ChunkDemuxerStream> video_; member in class:media::ChunkDemuxer
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
external_frame_buffer_test.cc 279 : video_(NULL),
284 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile);
285 ASSERT_TRUE(video_ != NULL);
286 video_->Init();
287 video_->Begin();
296 delete video_;
314 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
317 video_->Next();
322 for (; video_->cxdata() != NULL; video_->Next())
343 libvpx_test::WebMVideoSource *video_; member in class:__anon17611::ExternalFrameBufferTest
    [all...]
  /external/libvpx/libvpx/test/
external_frame_buffer_test.cc 274 : video_(NULL),
279 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile);
280 ASSERT_TRUE(video_ != NULL);
281 video_->Init();
282 video_->Begin();
291 delete video_;
309 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
312 video_->Next();
317 for (; video_->cxdata() != NULL; video_->Next())
338 libvpx_test::WebMVideoSource *video_; member in class:__anon8480::ExternalFrameBufferTest
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
external_frame_buffer_test.cc 274 : video_(NULL),
279 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile);
280 ASSERT_TRUE(video_ != NULL);
281 video_->Init();
282 video_->Begin();
291 delete video_;
309 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
312 video_->Next();
317 for (; video_->cxdata() != NULL; video_->Next())
338 libvpx_test::WebMVideoSource *video_; member in class:__anon19664::ExternalFrameBufferTest
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_sender.cc 57 video_(NULL),
114 video_ = new RTPSenderVideo(clock_, this);
133 delete video_;
151 if (video_) {
152 return video_->VideoBitrateSent();
158 if (video_) {
159 return video_->FecOverheadRate();
261 ret_val = video_->RegisterVideoPayload(payload_name, payload_number, rate,
324 - video_->FECPacketOverhead() // FEC/ULP/RED overhead.
383 *video_type = video_->VideoCodecType()
    [all...]
rtp_sender.h 344 RTPSenderVideo *video_; member in class:webrtc::RTPSender
  /external/chromium_org/media/formats/webm/
webm_cluster_parser.cc 46 video_(video_track_num, true, video_default_duration, log_cb),
66 video_.Reset();
73 video_.ClearReadyBuffers();
121 return video_.ready_buffers();
330 } else if (track_num == video_.track_num()) {
331 track = &video_;
652 video_.ApplyDurationEstimateIfNeeded();
659 DCHECK(ready_buffer_upper_bound_ == video_.GetReadyUpperBound());
662 video_.GetReadyUpperBound());
669 video_.ExtractReadyBuffers(ready_buffer_upper_bound_)
    [all...]
webm_cluster_parser.h 216 // |audio_| and |video_| and sets |ready_buffer_upper_bound_| to
218 // minimum upper bound across |audio_| and |video_|. (Text tracks can have no
253 Track video_; member in class:media::WebMClusterParser
  /external/chromium_org/remoting/webapp/
media_source_renderer.js 16 this.video_ = videoTag;
52 this.video_.src =
55 this.video_.play();
client_session.js 148 this.video_ = null;
516 this.video_ = /** @type {HTMLMediaElement} */(
520 this.video_.style.width = '0px';
521 this.video_.style.height = '0px';
523 var renderer = new remoting.MediaSourceRenderer(this.video_);
    [all...]

Completed in 219 milliseconds