Searched refs:video_ (Results 1 – 11 of 11) sorted by relevance
/external/libvpx/libvpx/test/ |
D | byte_alignment_test.cc | 58 ByteAlignmentTest() : video_(NULL), decoder_(NULL), md5_file_(NULL) {} in ByteAlignmentTest() 61 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile); in SetUp() 62 ASSERT_TRUE(video_ != NULL); in SetUp() 63 video_->Init(); in SetUp() 64 video_->Begin(); in SetUp() 77 delete video_; in TearDown() 86 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 88 if (res == VPX_CODEC_OK) video_->Next(); in DecodeOneFrame() 93 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 95 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames() [all …]
|
D | vp9_skip_loopfilter_test.cc | 27 SkipLoopFilterTest() : video_(NULL), decoder_(NULL), md5_file_(NULL) {} in SkipLoopFilterTest() 32 delete video_; in ~SkipLoopFilterTest() 39 video_ = new libvpx_test::WebMVideoSource(kVp9TestFile); in Init() 40 ASSERT_TRUE(video_ != NULL); in Init() 41 video_->Init(); in Init() 42 video_->Begin(); in Init() 59 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 62 video_->Next(); in DecodeOneFrame() 68 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 70 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames() [all …]
|
D | external_frame_buffer_test.cc | 289 ExternalFrameBufferTest() : video_(NULL), decoder_(NULL), num_buffers_(0) {} in ExternalFrameBufferTest() 292 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile); in SetUp() 293 ASSERT_TRUE(video_ != NULL); in SetUp() 294 video_->Init(); in SetUp() 295 video_->Begin(); in SetUp() 305 delete video_; in TearDown() 306 video_ = NULL; in TearDown() 323 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 325 if (res == VPX_CODEC_OK) video_->Next(); in DecodeOneFrame() 330 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() [all …]
|
/external/libaom/libaom/test/ |
D | external_frame_buffer_test.cc | 305 ExternalFrameBufferTest() : video_(NULL), decoder_(NULL), num_buffers_(0) {} in ExternalFrameBufferTest() 308 video_ = new libaom_test::WebMVideoSource(kAV1TestFile); in SetUp() 309 ASSERT_TRUE(video_ != NULL); in SetUp() 310 video_->Init(); in SetUp() 311 video_->Begin(); in SetUp() 321 delete video_; in TearDown() 322 video_ = NULL; in TearDown() 339 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 341 if (res == AOM_CODEC_OK) video_->Next(); in DecodeOneFrame() 346 for (; video_->cxdata() != NULL; video_->Next()) { 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()
|