Searched refs:video_ (Results 1 – 10 of 10) sorted by relevance
/external/libvpx/libvpx/test/ |
D | byte_alignment_test.cc | 59 : video_(NULL), in ByteAlignmentTest() 64 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile); in SetUp() 65 ASSERT_TRUE(video_ != NULL); in SetUp() 66 video_->Init(); in SetUp() 67 video_->Begin(); in SetUp() 81 delete video_; in TearDown() 90 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 93 video_->Next(); in DecodeOneFrame() 98 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 100 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames() [all …]
|
D | vp9_skip_loopfilter_test.cc | 28 : video_(NULL), in SkipLoopFilterTest() 36 delete video_; in ~SkipLoopFilterTest() 43 video_ = new libvpx_test::WebMVideoSource(kVp9TestFile); in Init() 44 ASSERT_TRUE(video_ != NULL); in Init() 45 video_->Init(); in Init() 46 video_->Begin(); in Init() 64 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 67 video_->Next(); in DecodeOneFrame() 73 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 75 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames() [all …]
|
D | external_frame_buffer_test.cc | 285 : video_(NULL), in ExternalFrameBufferTest() 290 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile); in SetUp() 291 ASSERT_TRUE(video_ != NULL); in SetUp() 292 video_->Init(); in SetUp() 293 video_->Begin(); in SetUp() 302 delete video_; in TearDown() 320 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 323 video_->Next(); in DecodeOneFrame() 328 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 330 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames() [all …]
|
/external/webrtc/talk/media/base/ |
D | mediaengine.h | 146 video_.Init(); in Init() 162 return video_.CreateChannel(call, options); in CreateVideoChannel() 182 return video_.codecs(); in video_codecs() 185 return video_.GetCapabilities(); in GetVideoCapabilities() 204 VIDEO video_; variable
|
D | streamparams.cc | 62 return GetStream(video_, selector, stream); in GetVideoStream() 72 video_ = streams.video_; in CopyFrom() 81 AddStream(&video_, stream); in AddVideoStream() 95 return RemoveStream(&video_, selector); in RemoveVideoStream()
|
D | streamparams.h | 216 return audio_.empty() && video_.empty() && data_.empty(); in empty() 220 std::vector<StreamParams>* mutable_video() { return &video_; } in mutable_video() 223 const std::vector<StreamParams>& video() const { return video_; } in video() 244 std::vector<StreamParams> video_; member
|
D | fakemediaengine.h | 853 video_.SetCodecs(codecs); in SetVideoCodecs() 862 video_.set_rtp_header_extensions(extensions); in SetVideoRtpHeaderExtensions() 869 return video_.GetChannel(index); in GetVideoChannel() 873 bool capture() const { return video_.capture_; } in capture() 875 return video_.options_changed_; in options_changed() 878 video_.options_changed_ = false; in clear_options_changed() 882 video_.set_fail_create_channel(fail); in set_fail_create_channel()
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | rtp_sender.cc | 136 video_(audio ? nullptr : new RTPSenderVideo(clock, this)), in RTPSender() 223 if (video_) { in VideoBitrateSent() 224 return video_->VideoBitrateSent(); in VideoBitrateSent() 230 if (video_) { in FecOverheadRate() 231 return video_->FecOverheadRate(); in FecOverheadRate() 336 payload = video_->CreateVideoPayload(payload_name, payload_number, rate); in RegisterPayload() 394 - video_->FECPacketOverhead() // FEC/ULP/RED overhead. in MaxDataPayloadLength() 469 *video_type = video_->VideoCodecType(); in CheckPayloadType() 484 video_->SetVideoCodecType(payload->typeSpecific.Video.videoCodecType); in CheckPayloadType() 486 video_->SetMaxConfiguredBitrateVideo(payload->typeSpecific.Video.maxRate); in CheckPayloadType() [all …]
|
D | rtp_sender.h | 396 rtc::scoped_ptr<RTPSenderVideo> video_; variable
|
/external/webrtc/talk/media/webrtc/ |
D | webrtcmediaengine.cc | 44 video_.SetExternalDecoderFactory(decoder_factory); in WebRtcMediaEngine2() 45 video_.SetExternalEncoderFactory(encoder_factory); in WebRtcMediaEngine2()
|