Home
last modified time | relevance | path

Searched refs:video_ (Results 1 – 10 of 10) sorted by relevance

/external/libvpx/libvpx/test/
Dbyte_alignment_test.cc58 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 …]
Dvp9_skip_loopfilter_test.cc27 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 …]
Dexternal_frame_buffer_test.cc280 ExternalFrameBufferTest() : video_(NULL), decoder_(NULL), num_buffers_(0) {} in ExternalFrameBufferTest()
283 video_ = new libvpx_test::WebMVideoSource(kVP9TestFile); in SetUp()
284 ASSERT_TRUE(video_ != NULL); in SetUp()
285 video_->Init(); in SetUp()
286 video_->Begin(); in SetUp()
295 delete video_; in TearDown()
312 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame()
314 if (res == VPX_CODEC_OK) video_->Next(); in DecodeOneFrame()
319 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames()
321 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames()
[all …]
/external/webrtc/talk/media/base/
Dmediaengine.h146 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
Dstreamparams.cc62 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()
Dstreamparams.h216 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
Dfakemediaengine.h853 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/
Drtp_sender.cc136 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 …]
Drtp_sender.h396 rtc::scoped_ptr<RTPSenderVideo> video_; variable
/external/webrtc/talk/media/webrtc/
Dwebrtcmediaengine.cc44 video_.SetExternalDecoderFactory(decoder_factory); in WebRtcMediaEngine2()
45 video_.SetExternalEncoderFactory(encoder_factory); in WebRtcMediaEngine2()