HomeSort by relevance Sort by last modified time
    Searched defs:vcm (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_receiver_unittest.cc 26 namespace vcm { namespace in namespace:webrtc
56 // Padding only packets are passed to the VCM with payload size 0.
213 } // namespace vcm
video_coding_impl.cc 22 namespace vcm { namespace in namespace:webrtc
44 } // namespace vcm
83 sender_(new vcm::VideoSender(clock, &post_encode_callback_)),
84 receiver_(new vcm::VideoReceiver(clock, event_factory)),
363 scoped_ptr<vcm::VideoSender> sender_;
364 scoped_ptr<vcm::VideoReceiver> receiver_;
video_coding_impl.h 33 namespace vcm { namespace in namespace:webrtc
234 } // namespace vcm
video_receiver.cc 25 namespace vcm { namespace in namespace:webrtc
331 // Make sure the VCM updates the decoder next time it decodes.
631 "VCM::PacketKeyFrame",
804 } // namespace vcm
video_sender.cc 23 namespace vcm { namespace in namespace:webrtc
194 // Make sure the VCM doesn't use the de-registered codec
465 } // namespace vcm
video_sender_unittest.cc 41 namespace vcm { namespace in namespace:webrtc
436 } // namespace vcm
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
codec_database_test.cc 12 // testing is done via the VCM module, no specific CodecDataBase module functionality.
32 VideoCodingModule* vcm = VideoCodingModule::Create(); local
33 CodecDataBaseTest* cdbt = new CodecDataBaseTest(vcm);
35 VideoCodingModule::Destroy(vcm);
41 CodecDataBaseTest::CodecDataBaseTest(VideoCodingModule* vcm):
42 _vcm(vcm),
113 // registering the callback - encode and decode with the same vcm (could be later changed)
generic_codec_test.cc 31 VideoCodingModule* vcm = VideoCodingModule::Create(&clock, &event_factory); local
32 GenericCodecTest* get = new GenericCodecTest(vcm, &clock);
40 VideoCodingModule::Destroy(vcm);
44 GenericCodecTest::GenericCodecTest(VideoCodingModule* vcm,
47 _vcm(vcm),
181 // to test the frame rate control in the VCM
243 // but the VCM will see a packet loss and request a new key frame.
473 printf(" \n\n VCM Generic Encoder Test: \n\n%i tests completed\n", vcmMacrosTests);
media_opt_test.cc 12 // testing is done via the VCM module, no specific Media opt functionality.
35 VideoCodingModule* vcm = VideoCodingModule::Create(); local
37 MediaOptTest* mot = new MediaOptTest(vcm, clock);
60 VideoCodingModule::Destroy(vcm);
68 MediaOptTest::MediaOptTest(VideoCodingModule* vcm, Clock* clock)
69 : _vcm(vcm),
249 // VCM: Registering codecs
481 (_log) << "VCM: Media Optimization Test Cycle Completed!" << std::endl;
mt_rx_tx_test.cc 148 VideoCodingModule* vcm = VideoCodingModule::Create(); local
149 RtpDataCallback dataCallback(vcm);
198 //VCM
199 if (vcm->InitializeReceiver() < 0)
203 if (vcm->InitializeSender())
207 // registering codecs for the VCM module
209 vcm->InitializeSender();
210 int32_t numberOfCodecs = vcm->NumberOfCodecs();
216 if (vcm->Codec(args.codecType, &sendCodec) != 0)
227 vcm->RegisterSendCodec(&sendCodec, numberOfCores, 1440)
    [all...]
normal_test.cc 40 VideoCodingModule* vcm = VideoCodingModule::Create(clock, &event_factory); local
41 NormalTest VCMNTest(vcm, clock);
43 VideoCodingModule::Destroy(vcm);
126 VCMNTEncodeCompleteCallback::RegisterReceiverVCM(VideoCodingModule *vcm)
128 _VCMReceiver = vcm;
178 //VCM Normal Test Class implementation
180 NormalTest::NormalTest(VideoCodingModule* vcm, Clock* clock)
183 _vcm(vcm),
264 // encode and decode with the same vcm
quality_modes_test.cc 35 VideoCodingModule* vcm = VideoCodingModule::Create(&clock, &event_factory); local
36 QualityModesTest QMTest(vcm, &clock);
38 VideoCodingModule::Destroy(vcm);
42 QualityModesTest::QualityModesTest(VideoCodingModule* vcm,
44 NormalTest(vcm, clock),
220 // encode and decode with the same vcm
236 // disabling internal VCM frame dropper
394 // VCM to update VPM of frame rate and size
408 QMTestVideoSettingsCallback::RegisterVCM(VideoCodingModule *vcm)
410 _vcm = vcm;
    [all...]

Completed in 637 milliseconds